diff options
| author | JaKooLit <ejhay.games@gmail.com> | 2025-03-20 15:33:11 +0900 |
|---|---|---|
| committer | JaKooLit <ejhay.games@gmail.com> | 2025-03-20 15:33:11 +0900 |
| commit | dffd296b92f06b1606f8d03137fbf235a39d261b (patch) | |
| tree | 6f005ce5c9b37dfc8da07a30529eb7d5163f0f22 /config/rofi | |
| parent | b3e8e78ac2ad712c38e5365faeb5bb5471dde692 (diff) | |
Added Kitty Theme Selector - Added in KooL hyprland Settings rofi. Kool Settings rofi modified since it is basically expanding
Diffstat (limited to 'config/rofi')
| -rw-r--r-- | config/rofi/config-edit.rasi | 4 | ||||
| -rw-r--r-- | config/rofi/config-kitty-theme.rasi | 68 |
2 files changed, 70 insertions, 2 deletions
diff --git a/config/rofi/config-edit.rasi b/config/rofi/config-edit.rasi index ffa5603f..915f1580 100644 --- a/config/rofi/config-edit.rasi +++ b/config/rofi/config-edit.rasi @@ -17,14 +17,14 @@ configuration { /* ---- Window ---- */ window { - width: inherit; + width: 70%; height: inherit; } /* ---- Listview ---- */ listview { - columns: 2; + columns: 3; lines: 6; fixed-height: false; scrollbar: true; diff --git a/config/rofi/config-kitty-theme.rasi b/config/rofi/config-kitty-theme.rasi new file mode 100644 index 00000000..5dc570be --- /dev/null +++ b/config/rofi/config-kitty-theme.rasi @@ -0,0 +1,68 @@ +/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* Oh My ZSH Theme */ + +@import "~/.config/rofi/config.rasi" + +/* ---- Configuration ---- */ +configuration { + modi: "drun"; +} + +/* ---- Window ---- */ +window { + width: inherit; + height: inherit; + border-radius: 15px; +} + +mainbox { + children: [ "inputbar" , "listview" ]; +} + +/* ---- Listbox ---- */ +listbox { + border-radius: 12px; +} + +/* ---- Inputbar ---- */ +inputbar { + padding: 14px; + border-radius: 10px; +} + +entry { + expand: true; + placeholder: " 🐾 Search / Choose Kitty theme"; +} + +/* ---- Listview ---- */ +listview { + columns: 3; + lines: 4; + spacing: 4px; + border-radius: 10px; + cycle: true; +} + +/* ---- Element ---- */ +element { + orientation: horizontal; +} + +/* ---- Message ---- */ +message { + border-radius: 10px; +} + +textbox { + padding: 15px; +} + +/* ---- Element ---- */ +element-icon { + size: 0%; +} +element-text { + horizontal-align: 0.0; + margin: 5px 30px 5px 30px; +} |
