diff options
| author | Ja.KooLit <85185940+JaKooLit@users.noreply.github.com> | 2025-07-20 09:59:30 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-20 09:59:30 +0900 |
| commit | 461043af7f27203ad37e85682231686cc6adcdd5 (patch) | |
| tree | 21151415b81d57ea5dc95ad7d657d1fcf85fb820 /config/rofi | |
| parent | a065ed1fcfcffd9eddbd3c4c848da1f6c6ae9dd0 (diff) | |
| parent | a3adc26702e4e0339f6a68c0465f38e2cddd9554 (diff) | |
Merge pull request #741 from tnfru/main
add: better rofi theme selector
Diffstat (limited to 'config/rofi')
| -rw-r--r-- | config/rofi/config-rofi-theme.rasi | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/config/rofi/config-rofi-theme.rasi b/config/rofi/config-rofi-theme.rasi index 652cd94c..0d77f857 100644 --- a/config/rofi/config-rofi-theme.rasi +++ b/config/rofi/config-rofi-theme.rasi @@ -11,8 +11,17 @@ window { /* ---- Mainbox ---- */ mainbox { - children: - [ "inputbar", "listview"]; + children: [ "inputbar", "message", "listview" ]; +} + +/* ---- Custombox ---- */ +/* Override custombox to ensure listview is visible for themes that use it */ +custombox { + spacing: 0px; + background-color: inherit; + text-color: inherit; + orientation: vertical; + children: [ "listview" ]; } /* ---- Entry input ---- */ @@ -42,3 +51,15 @@ element-text { margin: 0px; padding: 0px; } + +/* ---- Message ---- */ +message { + padding: 10px; + border-radius: 10px; + background-color: inherit; +} + +textbox { + text-color: inherit; + background-color: inherit; +} |
