summaryrefslogtreecommitdiff
path: root/.config/wofi
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-08-19 15:12:17 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-08-19 15:12:17 +0200
commita0ae78445382c124a44f9a28c6084ccd8dd50fe3 (patch)
tree3e215b5e7550a00c8afa99818f86a1c14af539cf /.config/wofi
parentcb56322ac25787c18772a16abdea30665ccf2327 (diff)
wofi: Add wofi configuration
Diffstat (limited to '.config/wofi')
-rw-r--r--.config/wofi/config7
-rw-r--r--.config/wofi/style.css30
2 files changed, 37 insertions, 0 deletions
diff --git a/.config/wofi/config b/.config/wofi/config
new file mode 100644
index 0000000..d0e63b6
--- /dev/null
+++ b/.config/wofi/config
@@ -0,0 +1,7 @@
+prompt=input…
+height=50%
+width=50%
+insensitive=true
+key_up=Control_L-k
+key_down=Control_L-j
+layer=overlay
diff --git a/.config/wofi/style.css b/.config/wofi/style.css
new file mode 100644
index 0000000..3f2f6ff
--- /dev/null
+++ b/.config/wofi/style.css
@@ -0,0 +1,30 @@
+* {
+ border: none;
+ border-radius: 3px;
+ color: rgb(197, 200, 198);
+ font-size: 28px;
+ font-family: 'Iosevka Smooth';
+}
+
+#outer-box {
+ border: 3px solid #FAA14F;
+}
+
+#window {
+ background-color: rgba(43, 48, 59, 0.9);
+}
+
+#input {
+ /* Hack to just inherit from ‘#window’ */
+ background-color: rgba(0, 0, 0, 0);
+ border-radius: 0;
+ border-bottom: 3px solid #FAA14F;
+}
+
+#entry, #input {
+ padding: .25em .5em;
+}
+
+#entry:selected {
+ background-color: rgba(65, 72, 89, 0.9);
+}