diff options
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 0000000000..b5eeb75f87 --- /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 |