diff options
| author | Ja.KooLit <85185940+JaKooLit@users.noreply.github.com> | 2025-03-21 10:00:34 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-21 10:00:34 +0900 |
| commit | af7c7389f9bdb6f8da83bd51e261ed00106eea1f (patch) | |
| tree | a327f82a34d13768cb7cf5d0a3d9893cc61c3ea3 /config/rofi | |
| parent | f113f871fe35acb5143e16648bcbcb2c7f675fef (diff) | |
| parent | 2d927892e5354abb14b9738d895b7084452886e2 (diff) | |
Merge branch 'development' into main-to-dev
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; +} |
