From 8ca47039820d5a6fb788cf46572e6ce7c7c10732 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Wed, 9 Dec 2020 17:22:51 -0600 Subject: [PATCH] Redoing my rofi prompts. --- .config/rofi/config | 1 - .config/rofi/config.rasi | 3 +++ .config/rofi/themes/dt-dmenu.rasi | 22 ++++++++++++---------- 3 files changed, 15 insertions(+), 11 deletions(-) delete mode 100644 .config/rofi/config create mode 100644 .config/rofi/config.rasi diff --git a/.config/rofi/config b/.config/rofi/config deleted file mode 100644 index 86171b4..0000000 --- a/.config/rofi/config +++ /dev/null @@ -1 +0,0 @@ -rofi.theme: ~/.config/rofi/themes/distrotube.rasi diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi new file mode 100644 index 0000000..1c246e1 --- /dev/null +++ b/.config/rofi/config.rasi @@ -0,0 +1,3 @@ +configuration { + theme: "~/.config/rofi/themes/dt-center.rasi"; +} diff --git a/.config/rofi/themes/dt-dmenu.rasi b/.config/rofi/themes/dt-dmenu.rasi index 8effec9..b47a4fa 100644 --- a/.config/rofi/themes/dt-dmenu.rasi +++ b/.config/rofi/themes/dt-dmenu.rasi @@ -5,14 +5,16 @@ */ * { - 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; + 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; + selected-normal-background: #ae3f3e; + selected-normal-foreground: #ffffff; } #window { anchor: north; @@ -45,6 +47,6 @@ padding: 4px 8px; } #element selected { - background-color: #ae3f3e; - text-color: #ffffff; + background-color: @selected-normal-background; + text-color: @selected-normal-foreground; }