aboutsummaryrefslogtreecommitdiff
path: root/rofi
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2020-09-08 21:48:44 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2020-09-08 21:48:44 +0200
commit988c844c038ff0223dbc44b0ed0244f6edd4a37e (patch)
tree52d60b81b356b18548876a532406fc7e5c270843 /rofi
parent165b16abdfbd46a6c242e74230613cd0f88dc311 (diff)
downloaddotfiles-988c844c038ff0223dbc44b0ed0244f6edd4a37e.tar.gz
rofi theme
Diffstat (limited to 'rofi')
-rw-r--r--rofi/config.rasi2
-rw-r--r--rofi/slate.rasi43
2 files changed, 44 insertions, 1 deletions
diff --git a/rofi/config.rasi b/rofi/config.rasi
index c96007b..dc8aa36 100644
--- a/rofi/config.rasi
+++ b/rofi/config.rasi
@@ -1,6 +1,6 @@
configuration {
modi: "window,drun,ssh";
- theme: "sidebar";
+ theme: "slate";
combi-modi: "window,drun,ssh";
show-icons: true;
}
diff --git a/rofi/slate.rasi b/rofi/slate.rasi
new file mode 100644
index 0000000..20133a9
--- /dev/null
+++ b/rofi/slate.rasi
@@ -0,0 +1,43 @@
+* {
+ background-color: #282C33;
+ border-color: #2e343f;
+ text-color: #8ca0aa;
+ spacing: 0;
+ width: 512px;
+}
+
+inputbar {
+ border: 0 0 1px 0;
+ children: [prompt,entry];
+}
+
+prompt {
+ padding: 16px;
+ border: 0 1px 0 0;
+}
+
+textbox {
+ background-color: #2e343f;
+ border: 0 0 1px 0;
+ border-color: #282C33;
+ padding: 8px 16px;
+}
+
+entry {
+ padding: 16px;
+}
+
+listview {
+ cycle: false;
+ margin: 0 0 -1px 0;
+ scrollbar: false;
+}
+
+element {
+ border: 0 0 1px 0;
+ padding: 16px;
+}
+
+element selected {
+ background-color: #2e343f;
+}