diff options
Diffstat (limited to 'desktop-common/.config/rofi')
| -rw-r--r-- | desktop-common/.config/rofi/config.rasi | 28 | ||||
| -rw-r--r-- | desktop-common/.config/rofi/themes/dark-grid.rasi | 113 | ||||
| -rw-r--r-- | desktop-common/.config/rofi/themes/dark.rasi | 108 |
3 files changed, 249 insertions, 0 deletions
diff --git a/desktop-common/.config/rofi/config.rasi b/desktop-common/.config/rofi/config.rasi new file mode 100644 index 0000000..474a160 --- /dev/null +++ b/desktop-common/.config/rofi/config.rasi @@ -0,0 +1,28 @@ +configuration { + modi: "drun,window,run"; + + /*display-drun: "➤";*/ + display-drun: ""; + display-window: ""; + display-run: ""; + display-filebrowser: ""; + + show-icons: true; + + window { + hide-active-window: true; + } + + filebrowser { + directory: "/home/setanta/storage/Downloads/images/"; + directories-first: false; + sorting-method: "atime"; + command: "show_image_and_copy_to_clipboard"; + } +} + +@theme "/home/setanta/.config/rofi/themes/dark.rasi" + +/* +* vim:ft=css +**/ diff --git a/desktop-common/.config/rofi/themes/dark-grid.rasi b/desktop-common/.config/rofi/themes/dark-grid.rasi new file mode 100644 index 0000000..35a4d49 --- /dev/null +++ b/desktop-common/.config/rofi/themes/dark-grid.rasi @@ -0,0 +1,113 @@ +* { + font: "VictorMono Nerd Font Mono Bold 14"; + + bg0: #1D1D1F; + bg1: #2D2D2D; + bg2: #333333; + + fg0: #EEEEEE; + fg1: #CECECE; + + /*prompt-color: #E9C651;*/ + prompt-color: #FEFAD4; + active-color: #629c81; + urgent-color: #C43513; + + background-color: transparent; + text-color: @fg1; + + margin: 0; + padding: 0; + spacing: 0; +} + +window { + location: center; + width: 1000; + background-color: @bg1; + padding: 8px; + border-radius: 10px; + border: 1px; + border-color: @prompt-color; +} + +inputbar { + spacing: 10px; + padding: 10px; + background-color: @bg0; + border: 0 0 1px 0; + border-radius: 6px 6px 0 0; + border-color: @prompt-color; + margin: 0 0 8px 0; +} + +prompt { + padding: 2px; +} + +prompt, entry, element-icon, element-text { + vertical-align: 0.5; +} + +prompt, entry { + text-color: @prompt-color; +} + +textbox { + padding: 8px; + background-color: @bg2; +} + +listview { + padding: 12px 0; + lines: 3; + columns: 4; + fixed-height: false; +} + +element { + orientation: vertical; + border: 2px; + border-radius: 8px; + padding: 6px; + spacing: 6px; +} + +element normal normal { + background-color: @bg2; + text-color: @fg1; +} + +element normal urgent { + text-color: @urgent-color; +} + +element normal active { + text-color: @active-color; +} + +element selected { + text-color: @bg0; + border-radius: 4px; +} + +element selected normal, element selected active { + background-color: @active-color; +} + +element selected urgent { + background-color: @urgent-color; +} + +element-icon { + size: 150px; + cursor: inherit; +} + +element-icon, element-text { + horizontal-align: 0.5; +} + +/* +* vim:ft=css +**/ diff --git a/desktop-common/.config/rofi/themes/dark.rasi b/desktop-common/.config/rofi/themes/dark.rasi new file mode 100644 index 0000000..bd7f862 --- /dev/null +++ b/desktop-common/.config/rofi/themes/dark.rasi @@ -0,0 +1,108 @@ +* { + font: "VictorMono Nerd Font Mono Bold 14"; + + bg0: #1D1D1F; + bg1: #2D2D2D; + bg2: #333333; + + fg0: #EEEEEE; + fg1: #CECECE; + + /*prompt-color: #E9C651;*/ + prompt-color: #FEFAD4; + active-color: #629c81; + urgent-color: #C43513; + + background-color: transparent; + text-color: @fg1; + + margin: 0; + padding: 0; + spacing: 0; +} + +window { + location: center; + width: 700; + background-color: @bg1; + padding: 8px; + border-radius: 10px; + border: 1px; + border-color: @prompt-color; +} + +inputbar { + spacing: 10px; + padding: 10px; + background-color: @bg0; + border: 0 0 1px 0; + border-radius: 6px 6px 0 0; + border-color: @prompt-color; + margin: 0 0 8px 0; +} + +prompt { + padding: 2px; +} + +prompt, entry, element-icon, element-text { + vertical-align: 0.5; +} + +prompt, entry { + text-color: @prompt-color; +} + +textbox { + padding: 8px; + background-color: @bg2; +} + +listview { + padding: 2px 0; + lines: 5; + columns: 1; + fixed-height: false; +} + +element { + padding: 6px; + spacing: 6px; +} + +element normal normal { + background-color: @bg2; + text-color: @fg1; +} + +element normal urgent { + text-color: @urgent-color; +} + +element normal active { + text-color: @active-color; +} + +element selected { + text-color: @bg0; + border-radius: 4px; +} + +element selected normal, element selected active { + background-color: @active-color; +} + +element selected urgent { + background-color: @urgent-color; +} + +element-icon { + size: 1.6em; +} +element-text { + text-color: inherit; +} + +/* +* vim:ft=css +**/ |
