summaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-06-05 20:31:32 +0200
committerDave Davenport <qball@gmpclient.org>2017-06-05 20:31:32 +0200
commit5775e80111abde5fbb37a228ed6fd7c2eb8f87ba (patch)
tree8d22050f7942a7f466e63120b5ed6f9ec70ada5b /themes
parent1efb4dab6c9f365599d8918a4c4ff95f2732450f (diff)
Add dmenu theme
Diffstat (limited to 'themes')
-rw-r--r--themes/dmenu.rasi44
1 files changed, 44 insertions, 0 deletions
diff --git a/themes/dmenu.rasi b/themes/dmenu.rasi
new file mode 100644
index 00000000..62664008
--- /dev/null
+++ b/themes/dmenu.rasi
@@ -0,0 +1,44 @@
+* {
+ background: Black;
+ foreground: 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 {
+ orientation: horizontal;
+ children: [ prompt, entry, listview ];
+}
+
+#window horibox listview box {
+ layout: horizontal;
+ spacing: 5px;
+ lines: 10;
+}
+
+#window horibox entry {
+ expand: false;
+ width: 10em;
+}
+
+#window horibox listview element {
+ padding: 0px 2px;
+}
+#window horibox listview element selected {
+ background: SteelBlue;
+}