dotfiles

Author: Kyle Fuller <kyle@fuller.li> 2020-08-22 11:39:41 +0100 +0100
Committer: Kyle Fuller <kyle@fuller.li> 2020-08-22 11:41:30 +0100 +0100
Commit: 05fe52328707a5402aff893dee671f45d47479d2
Parent: 28c17fc90c45369360554a9f1913928f0d0a21db


feat: add rofi config
diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf
index 41af2a243ee82c2b962e9019d97c3f3a6dabef4d..0d7d3a8b6042f2ec37321ec22dad7493fbf02670 100644
--- a/.config/picom/picom.conf
+++ b/.config/picom/picom.conf
@@ -2,7 +2,8 @@ backend = "xrender";
 
 opacity-rule = [
   "100:class_g = 'kitty' && focused",
-  "95:class_g = 'kitty' && !focused"
+  "95:class_g = 'kitty' && !focused",
+  "95:class_g = 'Rofi'"
 ];
 
 vsync = true;
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi
new file mode 100644
index 0000000000000000000000000000000000000000..f57761297f413875976a15414bc6a77d90a9da8c
--- /dev/null
+++ b/.config/rofi/config.rasi
@@ -0,0 +1,6 @@
+configuration {
+  font: "Source Code Pro 12";
+  matching: "fuzzy";
+  terminal: "kitty";
+  theme: "themes/main.rasi";
+}
diff --git a/.config/rofi/themes/main.rasi b/.config/rofi/themes/main.rasi
new file mode 100644
index 0000000000000000000000000000000000000000..78268393c0278bca07cb9108b369fc45cbe1464f
--- /dev/null
+++ b/.config/rofi/themes/main.rasi
@@ -0,0 +1,44 @@
+* {
+  background-color: #111111;
+  text-color: #dedede;
+  border-color: #ffffff;
+  spacing: 0;
+}
+
+window {
+  width: 1000px;
+}
+
+inputbar {
+  children: [prompt,entry];
+}
+
+prompt {
+  padding: 16px;
+}
+
+textbox {
+  background-color: #2e343f;
+  border-color: #282C33;
+  padding: 8px 16px;
+}
+
+entry {
+  padding: 16px;
+}
+
+listview {
+  cycle: false;
+  scrollbar: false;
+}
+
+element {
+  padding: 16px;
+}
+
+element selected {
+  background-color: #464d91;
+  text-color: #111111;
+}
+
+/* vim: ft=css