summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfpi2020-01-13 15:27:04 +0100
committerfpi2020-01-29 17:55:09 +0100
commit8928f932ea5937acc7beaf2106e7b0adfba38310 (patch)
tree6bca9c542adff9b8ee4c8b1f9c510eba66fb6f37
parentAdd a .gitignore (diff)
Add rofi configuration
-rw-r--r--rofi.org142
1 files changed, 142 insertions, 0 deletions
diff --git a/rofi.org b/rofi.org
new file mode 100644
index 0000000..ff05d95
--- /dev/null
+++ b/rofi.org
@@ -0,0 +1,142 @@
+#+begin_src shell :tangle no :results silent
+path=$(pwd)/tangle
+ln -sf $path/config.rasi ~/.config/rofi/
+#+end_src
+
+#+begin_src conf :tangle tangle/config.rasi :eval never
+,* {
+ background: #303f30df;
+ background-color: #00000000;
+ foreground: #778877ff;
+
+ selected-normal-foreground: #ffffffff;
+ normal-foreground: #778877ff;
+ alternate-normal-foreground: @normal-foreground;
+ active-foreground: #bbccbb;
+ selected-active-foreground: #ffffff;
+ alternate-active-foreground: @active-foreground;
+
+ normal-background: #00000000;
+ alternate-normal-background: #00000000;
+ selected-normal-background: #00000000;
+ selected-active-background: #00000000;
+ active-background: #00000000;
+ alternate-active-background: #00000000;
+
+ border-color: #000000aa;
+ spacing: 2;
+ separatorcolor: #00000000;
+ red: rgba ( 220, 50, 47, 100 % );
+ blue: rgba ( 38, 139, 210, 100 % );
+ lightbg: rgba ( 238, 232, 213, 100 % );
+ lightfg: rgba ( 88, 104, 117, 100 % );
+
+ selected-urgent-foreground: @background;
+ urgent-foreground: @red;
+ alternate-urgent-foreground: @red;
+ selected-urgent-background: @red;
+ urgent-background: @background;
+ alternate-urgent-background: @lightbg;
+}
+#window {
+ background-color: @background;
+ border: 0;
+ padding: 50;
+ transparency: "background";
+}
+#mainbox {
+ border: 0;
+ padding: 0;
+}
+#message {
+ border: 1px dash 0px 0px ;
+ border-color: @separatorcolor;
+ padding: 1px ;
+}
+#textbox {
+ text-color: @foreground;
+}
+#listview {
+ fixed-height: 0;
+ border: 2px dash 0px 0px ;
+ border-color: @separatorcolor;
+ spacing: 2px ;
+ scrollbar: false;
+ padding: 2px 0px 0px ;
+}
+#element {
+ border: 0;
+ padding: 1px ;
+}
+#element.normal.normal {
+ background-color: @normal-background;
+ text-color: @normal-foreground;
+}
+#element.normal.urgent {
+ background-color: @urgent-background;
+ text-color: @urgent-foreground;
+}
+#element.normal.active {
+ background-color: @active-background;
+ text-color: @active-foreground;
+}
+#element.selected.normal {
+ background-color: @selected-normal-background;
+ text-color: @selected-normal-foreground;
+}
+#element.selected.urgent {
+ background-color: @selected-urgent-background;
+ text-color: @selected-urgent-foreground;
+}
+#element.selected.active {
+ background-color: @selected-active-background;
+ text-color: @selected-active-foreground;
+}
+#element.alternate.normal {
+ background-color: @alternate-normal-background;
+ text-color: @alternate-normal-foreground;
+}
+#element.alternate.urgent {
+ background-color: @alternate-urgent-background;
+ text-color: @alternate-urgent-foreground;
+}
+#element.alternate.active {
+ background-color: @alternate-active-background;
+ text-color: @alternate-active-foreground;
+}
+#scrollbar {
+ width: 4px ;
+ border: 0;
+ handle-color: @normal-foreground;
+ padding: 0;
+}
+#sidebar {
+ border: 2px dash 0px 0px ;
+ border-color: @separatorcolor;
+}
+#button {
+ spacing: 0;
+ text-color: @normal-foreground;
+}
+#button.selected {
+ background-color: @selected-normal-background;
+ text-color: @selected-normal-foreground;
+}
+#inputbar {
+ spacing: 0;
+ text-color: @normal-foreground;
+ padding: 1px ;
+}
+#case-indicator {
+ spacing: 0;
+ text-color: @normal-foreground;
+}
+#entry {
+ spacing: 0;
+ text-color: @normal-foreground;
+}
+#prompt {
+ spacing: 0;
+ text-color: @normal-foreground;
+}
+#+end_src