diff options
| author | yuzu-eva <stevenhu@web.de> | 2022-06-07 23:46:38 +0200 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2022-06-07 23:46:38 +0200 |
| commit | 80ab70ce1abcf3dfeaff94b01774b6f862224e7d (patch) | |
| tree | dedc65213d6fe15ab61ae8aca27ebdfde314b68a /.config/rofi/themes/cafebabe-dmenu.rasi | |
| parent | 976d819223789794fc69f9c98002469239318dd0 (diff) | |
added rofi config
Diffstat (limited to '.config/rofi/themes/cafebabe-dmenu.rasi')
| -rw-r--r-- | .config/rofi/themes/cafebabe-dmenu.rasi | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/.config/rofi/themes/cafebabe-dmenu.rasi b/.config/rofi/themes/cafebabe-dmenu.rasi new file mode 100644 index 0000000..bbc6843 --- /dev/null +++ b/.config/rofi/themes/cafebabe-dmenu.rasi @@ -0,0 +1,64 @@ +/**----------------------------------------------------------------------- + +* ROFI color theme +* NAME: cafebabe-dmenu.rasi +* DESCRIPTION: Horizontal prompt similar to dmenu, based on Adapta-Nokto +* AUTHOR: cafebabe + +*------------------------------------------------------------------------- +*/ + +* { + background-color: rgba ( 0, 0, 0, 100 % ); + border-color: rgba ( 250, 251, 252, 100 % ); + text-color: rgba ( 187, 194, 207, 100 % ); + height: 20px; + font: "Ubuntu Mono Regular 11"; + prompt-font: "Ubuntu Mono Bold 11"; + prompt-background: rgba ( 171, 54, 255, 100 % ); + prompt-foreground: rgba ( 40, 44, 52, 100 % ); + prompt-padding: 4px; + selected-normal-background: rgba ( 171, 54, 255, 100 % ); + selected-normal-foreground: rgba ( 250, 251, 252, 100 % ); +} + +#window { + anchor: north; + location: north; + width: 100%; + padding: 0px; + children: [ horibox ]; +} + +#horibox { + orientation: horizontal; + children: [ prompt, entry, listview ]; +} + +#prompt { + padding: @prompt-padding; + background-color: @prompt-background; + text-color: @prompt-foreground; + font: @prompt-font; +} + +#listview { + layout: horizontal; + lines: 100; +} + +#entry { + padding: 2px; + expand: false; + width: 10em; +} + +#element { + padding: 2px 8px; +} + +#element selected { + background-color: @selected-normal-background; + text-color: @selected-normal-foreground; +} + |
