diff options
author | ZachIR <zachir@librem.one> | 2025-07-13 05:27:47 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-07-13 05:27:47 -0500 |
commit | ac58746a49e1b7e8559cff1ed4522c3584caa026 (patch) | |
tree | 710e4e87d0526e8fe254befe6b9342f299846967 /rofi | |
parent | 03293db1c9078d0960e92bed9b3a66e14cadacd1 (diff) | |
parent | e2863dbdbae1e10a82f098c4575ed973249bab7b (diff) |
Merge branch 'master' into carcar
Diffstat (limited to 'rofi')
-rw-r--r-- | rofi/config.rasi | 1 | ||||
-rw-r--r-- | rofi/dmenu.rasi | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/rofi/config.rasi b/rofi/config.rasi new file mode 100644 index 0000000..1de6cb4 --- /dev/null +++ b/rofi/config.rasi @@ -0,0 +1 @@ +@theme "dmenu.rasi" diff --git a/rofi/dmenu.rasi b/rofi/dmenu.rasi new file mode 100644 index 0000000..6fd198a --- /dev/null +++ b/rofi/dmenu.rasi @@ -0,0 +1,43 @@ +/** + * ROFI Color theme + * User: Qball + * Copyright: Dave Davenport + */ + +* { + background-color: Black; + border-color: White; + text-color: White; + font: "FiraCode Nerd Font Mono 12"; +} +window { + anchor: north; + location: north; + width: 100%; + padding: 4px; + children: [ horibox ]; +} +horibox { + orientation: vertical; + children: [ prompt, entry, listview ]; +} +listview { + layout: vertical; + spacing: 5px; + lines: 15; +} +entry { + expand: false; + width: 10em; +} +element { + padding: 0px 2px; +} +element selected { + background-color: #198844; +} + +element-text, element-icon { + background-color: inherit; + text-color: inherit; +} |