summaryrefslogtreecommitdiffstats
path: root/themes/dmenu.rasi
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-09-09 14:50:23 +0200
committerDave Davenport <qball@gmpclient.org>2017-09-09 14:50:23 +0200
commite01aefd773420fd97580744d1c19026796203b8a (patch)
treebdec63161e3a963c151c45b6f3223392bd7370df /themes/dmenu.rasi
parentb24660a2045f3d6efc4727d4e4b3767f8da07e03 (diff)
Update shipped themes.
Diffstat (limited to 'themes/dmenu.rasi')
-rw-r--r--themes/dmenu.rasi24
1 files changed, 10 insertions, 14 deletions
diff --git a/themes/dmenu.rasi b/themes/dmenu.rasi
index 62664008..7c6867a7 100644
--- a/themes/dmenu.rasi
+++ b/themes/dmenu.rasi
@@ -1,44 +1,40 @@
* {
- background: Black;
- foreground: White;
+ background-color: Black;
+ border-color: White;
+ text-color: White;
font: "Times New Roman 12";
}
configuration {
- show-icons: true;
- drun-icon-theme: "gnome";
}
#window {
anchor: north;
location: north;
-}
-
-#window box {
width: 100%;
padding: 4px;
children: [ horibox ];
}
-#window horibox box {
+#horibox {
orientation: horizontal;
children: [ prompt, entry, listview ];
}
-#window horibox listview box {
+#listview {
layout: horizontal;
spacing: 5px;
- lines: 10;
+ lines: 100;
}
-#window horibox entry {
+#entry {
expand: false;
width: 10em;
}
-#window horibox listview element {
+#element {
padding: 0px 2px;
}
-#window horibox listview element selected {
- background: SteelBlue;
+#element selected {
+ background-color: SteelBlue;
}