summaryrefslogtreecommitdiff
path: root/.config/rofi
diff options
context:
space:
mode:
authorWarrick Lo <warrick.s.z.lo@gmail.com>2021-12-11 23:33:16 -0800
committerWarrick Lo <warrick.s.z.lo@gmail.com>2021-12-11 23:33:16 -0800
commit487d64163c59fa3de79b5ff1abf303475395c4a2 (patch)
tree6339b3c8bbf7bdfe10e8c006c9cfbae9f66f527e /.config/rofi
parent88de5bcf9b1598c5ada352d1f3b724423bf7e6ad (diff)
Restructure entire home directory
The new XDG base directories will resemble the Filesystem Hierarchy Standard on Linux or the FreeBSD/OpenBSD directory structure. Refer to the FHS or hier(7). XDG user directories are defined in $XDG_CONFIG_HOME/user-dirs.dirs.
Diffstat (limited to '.config/rofi')
-rw-r--r--.config/rofi/config.rasi10
-rw-r--r--.config/rofi/theme.rasi105
2 files changed, 0 insertions, 115 deletions
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi
deleted file mode 100644
index f1d8163..0000000
--- a/.config/rofi/config.rasi
+++ /dev/null
@@ -1,10 +0,0 @@
-/* Rofi configuration */
-
-configuration {
- timeout {
- delay: 10;
- action: "kb-cancel";
- }
-
- theme: "theme";
-}
diff --git a/.config/rofi/theme.rasi b/.config/rofi/theme.rasi
deleted file mode 100644
index 698a234..0000000
--- a/.config/rofi/theme.rasi
+++ /dev/null
@@ -1,105 +0,0 @@
-/* Rofi theme */
-
-configuration {
- font: "Inter 10";
- show-icons: true;
- icon-theme: "Paper";
- modi: "drun,run,window,ssh";
- sidebar-mode: true;
- display-drun: "drun";
- display-run: "run";
- display-window: "window";
- display-ssh: "ssh";
-}
-
-* {
- white: #ebdbb2;
- black: #101010;
-
- orange: #eb744c;
- blue: #497287;
-
- background-color: @black;
- text-color: @white;
-
- border: 2px;
- margin: 2px;
-}
-
-window {
- border: 1px;
- border-color: @orange;
- border-radius: 8px;
- width: 32%;
- padding: 32px;
-}
-
-inputbar {
- children: [prompt, entry];
- border: 0 0 2px 0;
- border-color: @blue;
- padding: 4px;
-}
-
-listview {
- columns: 1;
-}
-
-prompt {
- font: "Iosevka Extended Bold 12";
-}
-
-entry {
- font: "Iosevka Extended 12";
- cursor: text;
-}
-
-element,
-element-text,
-element-icon,
-button {
- cursor: pointer;
-}
-
-element {
- font: "Inter Medium 12";
- border: 0;
- border-radius: 4px;
- padding: 2px;
-}
-
-element selected {
- background-color: @orange;
- text-color: @black;
-}
-
-element-text {
- background-color: inherit;
- text-color: inherit;
- horizontal-align: 0;
- vertical-align: 0.5;
-}
-
-element-icon {
- size: 24px;
- background-color: inherit;
- text-color: inherit;
- horizontal-align: 0.5;
- vertical-align: 0.5;
-}
-
-button {
- background-color: @white;
- text-color: @black;
- font: "Inter Bold 10";
- border: 0;
- border-radius: 4px;
- padding: 4px;
- horizontal-align: 0.5;
- vertical-align: 0.5;
-}
-
-button selected {
- background-color: @blue;
- text-color: @white;
-}