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/themes/power.rasi | |
| parent | c066c151c38259543b1594dd71cc550149ce2ced (diff) | |
| download | dotfiles-647d2f0c79286248ce2da517e19d1a791f1605a8.tar.gz dotfiles-647d2f0c79286248ce2da517e19d1a791f1605a8.zip | |
Add rofi config
Diffstat (limited to '.config/rofi/themes/power.rasi')
| -rw-r--r-- | .config/rofi/themes/power.rasi | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.config/rofi/themes/power.rasi b/.config/rofi/themes/power.rasi new file mode 100644 index 0000000..209a9ac --- /dev/null +++ b/.config/rofi/themes/power.rasi @@ -0,0 +1,34 @@ +/** + * This theme is intended for a 5 items wide menu + * on a 1366x768 pixels resolution. + */ +@import "colors.rasi" +#window { + width: 1366px; + height: 768px; + /* vertical horizontal */ + padding: 270px 88px; + children: [ horibox ]; +} +#horibox { + children: [ listview ]; +} +#listview { + layout: horizontal; + spacing: 56px; + lines: 5; +} +#element { + /** + * Values bellow are 'no-padding' ones, to which we add 70 + * top right bottom left + * -14px 0px -14px -93px */ + padding: 56px 70px 56px -23px; + background-color: @background-light; +} +#element.selected { + background-color: @accent; + text-color: @background; +} + + |
