diff options
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; +} |
