From 0191650b77e0fe00e13d3b4e97a75cf9ad13b01e Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Wed, 9 Dec 2020 17:05:00 -0600 Subject: [PATCH] Redoing my rofi prompts. --- .../{distrotube.rasi => dt-center.rasi} | 0 .config/rofi/themes/dt-dmenu.rasi | 50 +++++++++++++++++++ 2 files changed, 50 insertions(+) rename .config/rofi/themes/{distrotube.rasi => dt-center.rasi} (100%) create mode 100644 .config/rofi/themes/dt-dmenu.rasi diff --git a/.config/rofi/themes/distrotube.rasi b/.config/rofi/themes/dt-center.rasi similarity index 100% rename from .config/rofi/themes/distrotube.rasi rename to .config/rofi/themes/dt-center.rasi diff --git a/.config/rofi/themes/dt-dmenu.rasi b/.config/rofi/themes/dt-dmenu.rasi new file mode 100644 index 0000000..8effec9 --- /dev/null +++ b/.config/rofi/themes/dt-dmenu.rasi @@ -0,0 +1,50 @@ +/** + * ROFI Color theme + * NAME: dt-dmenu.rasi + * AUTHOR: Derek Taylor (DT) + */ + +* { + background-color: #282c34; + border-color: #282c34; + text-color: #bbc2cf; + font: "SauceCodePro Nerd Font Mono 9"; + prompt-font: "Ubuntu Bold 9"; + prompt-background: #51afef; + prompt-foreground: #282c34; + prompt-padding: 4px; +} +#window { + anchor: north; + location: north; + width: 100%; + padding: 0px; + children: [ horibox ]; +} +#horibox { + orientation: horizontal; + children: [ prompt, entry, listview ]; +} +#prompt { + padding: @prompt-padding; + background-color: @prompt-background; + text-color: @prompt-foreground; + font: @prompt-font; +} +#listview { + layout: horizontal; + spacing: 2px; + lines: 100; +} +#entry { + padding: 4px 4px; + expand: false; + width: 10em; +} +#element { + padding: 4px 8px; +} +#element selected { + background-color: #ae3f3e; + text-color: #ffffff; +}