diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-11-01 21:55:45 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-11-01 21:55:45 +0200 |
| commit | 647d2f0c79286248ce2da517e19d1a791f1605a8 (patch) | |
| tree | 82f9a426b667eb500d4e1ab19fba0a4fbad1942f /.config/rofi/Notif.rasi | |
| parent | c066c151c38259543b1594dd71cc550149ce2ced (diff) | |
| download | dotfiles-647d2f0c79286248ce2da517e19d1a791f1605a8.tar.gz dotfiles-647d2f0c79286248ce2da517e19d1a791f1605a8.zip | |
Add rofi config
Diffstat (limited to '.config/rofi/Notif.rasi')
| -rw-r--r-- | .config/rofi/Notif.rasi | 153 |
1 files changed, 153 insertions, 0 deletions
diff --git a/.config/rofi/Notif.rasi b/.config/rofi/Notif.rasi new file mode 100644 index 0000000..47bc1af --- /dev/null +++ b/.config/rofi/Notif.rasi @@ -0,0 +1,153 @@ +configuration { + display-drun: " Apps"; + display-window: "缾 Windows"; + show-icons:true; + font: "Fira Code 10"; +} + +* { + background-color: #fffff7; + bg: #fffff7; + text-color: #927f70; + selbg: #927f70; + actbg: #eee8da; + urgbg: #eee8da; + winbg: #eee8da; + + selected-normal-foreground: @text-color; + normal-foreground: @text-color; + selected-normal-background: @actbg; + normal-background: @background-color; + + selected-urgent-foreground: @urgbg; + urgent-foreground: @text-color; + selected-urgent-background: @actbg; + urgent-background: @background-color; + urgent-foreground: @urgbg; + + selected-active-foreground: @selbg; + active-foreground: @selbg; + selected-active-background: @actbg; + active-background: @background-color; + + line-margin: 2; + line-padding: 2; + separator-style: "none"; + hide-scrollbar: "true"; + margin: 0; + padding: 5; +} + +window { + location: northeast; + anchor: northeast; + //height: 40%; + y-offset: 60px; + x-offset: -20px; + width: 16%; + orientation: horizontal; + children: [mainbox]; + border: 2px solid; + border-radius: 10px; + border-color: #eee8da; +} + +mainbox { + spacing: 0.8em; + orientation: vertical; + children: [ inputbar, listview ]; +} + +button { padding: 2px 2px; } + +button selected { + background-color: @active-background; + text-color: @background-color; +} + +inputbar { + padding: 2px; + spacing: 5px; +} + +listview { + spacing: 0.5em; + dynamic: true; + cycle: false; +} + +element { + padding: 10px; +} + +prompt { + padding: 10px 0px 0px 20px; + font: "Fira Code 10"; +} + +entry { + expand: true; + text-color: @normal-foreground; + vertical-align: 0; + padding: 5px 0px 0px 20px; + enabled: false; +} + +element normal.normal { + background-color: @bg; + border-radius: 8px; + text-color: @normal-foreground; +} + +element normal.urgent { + background-color: @bg; + border-radius: 8px; + text-color: @urgent-foreground; +} + +element normal.active { + background-color: @bg; + border-radius: 8px; + text-color: @active-foreground; +} + +element selected.normal { + background-color: @selected-normal-background; + text-color: @selected-normal-foreground; +} + +element selected.urgent { + background-color: @selected-urgent-background; + text-color: @selected-urgent-foreground; +} + +element selected.active { + background-color: @selected-active-background; + text-color: @selected-active-foreground; +} + +element alternate.normal { + background-color: @bg; + border-radius: 8px; + text-color: @normal-foreground; +} + +element alternate.urgent { + background-color: @bg; + border-radius: 8px; + text-color: @urgent-foreground; +} + +element alternate.active { + background-color: @bg; + border-radius: 8px; + text-color: @active-foreground; +} +element-icon { + size: 7ch; +} +element.selected { + border-radius: 8px; + border: 0 0 0 5px solid; + border-color: @winbg; +} |
