diff options
author | Dave Woodfall <dave@tty1.uk> | 2019-04-15 17:55:24 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-04-20 08:20:55 +0700 |
commit | 718e23b5c6f511431a8a72a31eb7f27af71b0833 (patch) | |
tree | 5c76d4009719352f0075320f86bac1188dc7cf92 /desktop/dwm/dwm.rasi.new | |
parent | f53d530a7a105a43801b83f4eb2866a5ee486950 (diff) |
desktop/dwm: Add new options to slackbuild. Fix 6.2 update patch.
Diffstat (limited to 'desktop/dwm/dwm.rasi.new')
-rw-r--r-- | desktop/dwm/dwm.rasi.new | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/desktop/dwm/dwm.rasi.new b/desktop/dwm/dwm.rasi.new new file mode 100644 index 000000000000..b5eeb75f87f4 --- /dev/null +++ b/desktop/dwm/dwm.rasi.new @@ -0,0 +1,48 @@ +/** + * ROFI Color theme based on dwm colours + * User: dive + * License: WTF + */ +* { + background-color: #222222; + border-color: #222222; + text-color: #bbbbbb; + /* slightly larger than dwm/dmenu font because it looks too small, + on my system at least. */ + font: "monospace 13"; + } + +configuration { + display-run: ""; +} + +#window { + anchor: north; + location: north; + width: 100%; + children: [ horibox ]; +} + +#horibox { + orientation: horizontal; + children: [ prompt, entry, listview ]; +} + +#listview { + layout: horizontal; + spacing: 0.5em; +} + +#entry { + expand: false; + width: 18em; +} + +#element { + padding: 1px 5px; +} +#element selected { + background-color: #005577; + text-color: #eeeeee; +} +/* vim: syn=css expandtab |