summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am1
-rwxr-xr-xscript/rofi-theme-selector2
-rw-r--r--themes/arthur.rasi99
3 files changed, 101 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 7e1d78ad..91faa425 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -144,6 +144,7 @@ README.html: README.md
###
themedir=$(pkgdatadir)/themes/
theme_DATA=\
+ themes/arthur.rasi\
themes/Adapta-Nokto.rasi\
themes/Arc.rasi\
themes/DarkBlue.rasi\
diff --git a/script/rofi-theme-selector b/script/rofi-theme-selector
index 4a03e1eb..bc285c03 100755
--- a/script/rofi-theme-selector
+++ b/script/rofi-theme-selector
@@ -81,7 +81,7 @@ function find_themes()
themes+=(${file})
FN=$(basename ${file})
NAME=${FN%.*}
- USER=$(${SED} -n 's/^! User: \(.*\)/\1/p' ${file} )
+ USER=$(${SED} -n 's/^.*User: \(.*\)/\1/p' ${file} )
if [ -z "${USER}" ]
then
theme_names+=(${NAME})
diff --git a/themes/arthur.rasi b/themes/arthur.rasi
new file mode 100644
index 00000000..e863eca4
--- /dev/null
+++ b/themes/arthur.rasi
@@ -0,0 +1,99 @@
+/**
+ * User: Qball
+ * Copyright: Dave Davenport
+ */
+* {
+ foreground: #ffeedd;
+ background: rgba(0,0,0,0);
+ dark: #1c1c1c;
+ // Black
+ black: #3d352a;
+ lightblack: #554444;
+ //
+ // Red
+ red: #cd5c5c;
+ lightred: #cc5533;
+ //
+ // Green
+ green: #86af80;
+ lightgreen: #88cc22;
+ //
+ // Yellow
+ yellow: #e8ae5b;
+ lightyellow: #ffa75d;
+ //
+ // Blue
+ blue: #6495ed;
+ lightblue: #87ceeb;
+ //
+ // Magenta
+ magenta: #deb887;
+ lightmagenta: #996600;
+ //
+ // Cyan
+ cyan: #b0c4de;
+ lightcyan: #b0c4de;
+ //
+ // White
+ white: #bbaa99;
+ lightwhite: #ddccbb;
+ //
+ // Bold, Italic, Underline
+ highlight: bold #ffffff;
+}
+#window {
+ location: center;
+ anchor: north;
+ y-offset: -5em;
+}
+#window box {
+ padding: 10px;
+ border: 1px;
+ foreground: @magenta;
+ background: #cc1c1c1c;
+}
+
+
+#window mainbox inputbar {
+ background: @lightblack;
+ text: @lightgreen;
+ padding: 4px;
+}
+#window mainbox inputbar box {
+ border: 0px 0px 2px 0px;
+}
+#window mainbox box {
+ spacing: 0.3em;
+}
+
+#window mainbox listview {
+ dynamic: false;
+}
+#window mainbox listview element selected normal {
+ background: @blue;
+}
+#window mainbox listview element normal active {
+ foreground: @lightblue;
+}
+#window mainbox listview element normal urgent {
+ foreground: @lightred;
+}
+#window mainbox listview element alternate normal {
+}
+#window mainbox listview element alternate active {
+ foreground: @lightblue;
+}
+#window mainbox listview element alternate urgent {
+ foreground: @lightred;
+}
+#window mainbox listview element selected active {
+ background: @lightblue;
+ foreground: @dark;
+}
+#window mainbox listview element selected urgent {
+ background: @lightred;
+ foreground: @dark;
+}
+#window mainbox listview element normal normal {
+
+}