aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2021-03-06 14:41:34 +0100
committerMateja <mail@matejamaric.com>2021-03-06 14:41:34 +0100
commitb1d21133308157832824712e254f984d6c542ae1 (patch)
tree495b3851dc2f72d7eae4b55a515b0ab259a3c1f9
parent62869518f80ed1d45609d25b07a87d2a87325329 (diff)
downloaddotfiles-b1d21133308157832824712e254f984d6c542ae1.tar.gz
dotfiles-b1d21133308157832824712e254f984d6c542ae1.zip
Use different rofi theme.
-rw-r--r--.config/rofi/config2
-rw-r--r--.config/rofi/nord.rasi93
2 files changed, 94 insertions, 1 deletions
diff --git a/.config/rofi/config b/.config/rofi/config
index 0406648..0a3ed0b 100644
--- a/.config/rofi/config
+++ b/.config/rofi/config
@@ -1 +1 @@
-rofi.theme: /usr/share/rofi/themes/Arc-Dark.rasi
+rofi.theme: nord
diff --git a/.config/rofi/nord.rasi b/.config/rofi/nord.rasi
new file mode 100644
index 0000000..46fe423
--- /dev/null
+++ b/.config/rofi/nord.rasi
@@ -0,0 +1,93 @@
+/*
+ * File from: https://github.com/amayer5125/nord-rofi
+ */
+
+* {
+ nord0: #2e3440;
+ nord1: #3b4252;
+ nord2: #434c5e;
+ nord3: #4c566a;
+ nord4: #d8dee9;
+ nord5: #e5e9f0;
+ nord6: #eceff4;
+ nord7: #8fbcbb;
+ nord8: #88c0d0;
+ nord9: #81a1c1;
+ nord10: #5e81ac;
+ nord11: #bf616a;
+ nord12: #d08770;
+ nord13: #ebcb8b;
+ nord14: #a3be8c;
+ nord15: #b48ead;
+
+ background-color: @nord1;
+ border: 0px;
+ margin: 0px;
+ padding: 0px;
+ spacing: 0px;
+ text-color: @nord4;
+}
+#inputbar {
+ text-color: @nord3;
+ padding: 6px;
+ margin: 0px 0px 2px;
+ children: [ entry ];
+}
+#entry {
+ background-color: @nord3;
+ text-color: @nord4;
+ padding: 5px;
+}
+#message {
+ border: 0px 0px 1px;
+ border-color: @nord3;
+ padding: 0px 0px 6px 7px;
+}
+#listview {
+ lines: 10;
+ padding: 2px 0px 0px;
+ scrollbar: true;
+}
+#element {
+ padding: 0px 0px 0px 7px;
+ margin: 0px 0px 5px 0px;
+ text-color: @nord4;
+}
+#element.normal.normal {
+ text-color: @nord4;
+}
+#element.normal.urgent {
+ text-color: @nord11;
+}
+#element.normal.active {
+ text-color: @nord10;
+}
+#element.alternate.normal {
+ text-color: @nord4;
+}
+#element.alternate.urgent {
+ text-color: @nord11;
+}
+#element.alternate.active {
+ text-color: @nord10;
+}
+#element.selected.normal {
+ background-color: @nord8;
+ text-color: @nord1;
+}
+#element.selected.urgent {
+ background-color: @nord11;
+ text-color: @nord4;
+}
+#element.selected.active {
+ background-color: @nord10;
+ text-color: @nord4;
+}
+#scrollbar {
+ handle-color: @nord3;
+ handle-width: 0.50em;
+}
+#button.selected {
+ background-color: @nord8;
+ text-color: @nord4;
+}