diff options
| author | JaKooLit <ejhay.games@gmail.com~> | 2025-02-10 20:05:17 +0900 |
|---|---|---|
| committer | JaKooLit <ejhay.games@gmail.com~> | 2025-02-10 20:05:17 +0900 |
| commit | 99dcaf5bf9e77adf0342446012acfd4588cf5738 (patch) | |
| tree | d88289a58dd2f50bb752cb78877e97e59603f4b4 /assets/rofi/themes/KooL_style-11-Win11-list-light.rasi | |
| parent | 2fd83b87b53af1acb234ed970e252ce3cde674f4 (diff) | |
updated rofi search
Diffstat (limited to 'assets/rofi/themes/KooL_style-11-Win11-list-light.rasi')
| -rw-r--r-- | assets/rofi/themes/KooL_style-11-Win11-list-light.rasi | 130 |
1 files changed, 130 insertions, 0 deletions
diff --git a/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi new file mode 100644 index 00000000..65809c4d --- /dev/null +++ b/assets/rofi/themes/KooL_style-11-Win11-list-light.rasi @@ -0,0 +1,130 @@ +/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* KooL Style 10 - Windows 11 List Light */ +/* source: https://github.com/newmanls */ + +/* Integrating Wallust and More tweaks */ + +/* ---- Configuration ---- */ +configuration { + dpi: 1; + show-icons: true; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; +} + +/*****----- Global Properties -----*****/ +* { + font: "JetBrainsMono Nerd Font SemiBold 13"; + + bg0 : #ffffff80; + bg1 : #f9f9f9bf; + bg2 : #f7f7f7; + bg3 : #fefefebf; + fg0 : #1a1a1a; + fg1 : #5f5f5f; + accent : #005fb8; + urgent : @accent; + + background-color : transparent; + text-color : @fg0; + + margin : 0; + padding : 0; + spacing : 0; +} + +element-icon, element-text, scrollbar { + cursor: pointer; +} + +window { + location : south; + width : 40%; + height : 50%; + y-offset : -10px; + + background-color : @bg1; + border-radius : 8px; +} + +mainbox { + padding : 24px; + spacing : 24px; +} + +inputbar { + padding : 8px; + spacing : 4px; + children : [ icon-search, entry ]; + border : 0 0 2px 0 solid; + border-color : @accent; + border-radius : 2px; + background-color : @bg0; +} + +icon-search, entry, element-icon, element-text { + vertical-align: 0.5; +} + +icon-search { + expand : false; + filename : "search-symbolic"; + size : 24px; +} + +entry { + placeholder : "Type here to search"; + placeholder-color : @fg1; +} + +textbox { + padding : 4px 8px; + background-color : @bg2; +} + +listview { + columns : 2; + spacing : 8px; + fixed-height : true; + fixed-columns : true; +} + +element { + font: "JetBrainsMono Nerd Font SemiBold 11"; + spacing : 1em; + padding : 8px; + border-radius : 2px; +} + +element normal urgent { + text-color: @urgent; +} + +element normal active { + text-color: @accent; +} + +element alternate active { + text-color: @accent; +} + +element selected active { + text-color: @accent; +} + +element selected { + background-color: @bg3; +} + +element selected urgent { + background-color: @urgent; +} + +element-icon { + size: 1.5em; +} + +element-text { + text-color: inherit; +} |
