diff options
-rw-r--r-- | .config/rofi/config.rasi | 7 | ||||
-rwxr-xr-x | .local/share/bin/rofi | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi index 099ce50..088d62f 100644 --- a/.config/rofi/config.rasi +++ b/.config/rofi/config.rasi @@ -1,6 +1,5 @@ configuration { modi: "drun,run"; - lines: 6; font: "JetBrainsMono Nerd Font 9"; matching: "fuzzy"; separator-style: "none"; @@ -41,6 +40,7 @@ listview { cycle: false; margin: 0 0 -1px 0; scrollbar: false; + lines: 6; } element { @@ -51,3 +51,8 @@ element selected { background-color: ${ROFIACCOLOR}; text-color: @background-color; } + +element-text { + background-color: inherit; + text-color: inherit; +} diff --git a/.local/share/bin/rofi b/.local/share/bin/rofi index 7f0a89b..1a3ec6c 100755 --- a/.local/share/bin/rofi +++ b/.local/share/bin/rofi @@ -8,4 +8,4 @@ export ROFIBGCOLOR="$(get_color background)" export ROFIFGCOLOR="$(get_color foreground)" export ROFIACCOLOR="$(get_color color5)" -/bin/rofi $@ +/bin/rofi -no-default-config $@ |