summaryrefslogtreecommitdiff
path: root/config/wofi
diff options
context:
space:
mode:
Diffstat (limited to 'config/wofi')
-rwxr-xr-xconfig/wofi/config32
-rwxr-xr-xconfig/wofi/style.css59
2 files changed, 91 insertions, 0 deletions
diff --git a/config/wofi/config b/config/wofi/config
new file mode 100755
index 0000000..0f7e7ba
--- /dev/null
+++ b/config/wofi/config
@@ -0,0 +1,32 @@
+# mode & placement
+show=drun
+location=top
+width=700
+lines=8
+columns=2
+dynamic_lines=false
+
+# icons
+allow_images=true
+image_size=36
+
+# search & UX
+matching=fuzzy
+insensitive=true
+hide_scroll=false
+prompt=
+
+# terminal
+term=foot
+
+# keybinds (vim-ish)
+key_up=Ctrl-k
+key_down=Ctrl-j
+key_left=Ctrl-h
+key_right=Ctrl-l
+key_submit=Return
+key_forward=Tab
+key_backward=Shift-ISO_Left_Tab
+
+# stylesheet
+style=/home/tony/.config/wofi/style.css
diff --git a/config/wofi/style.css b/config/wofi/style.css
new file mode 100755
index 0000000..4ee72bd
--- /dev/null
+++ b/config/wofi/style.css
@@ -0,0 +1,59 @@
+* {
+ font-family: "UbuntuMono", monospace;
+ font-size: 16px;
+ font-weight: bold;
+}
+
+window {
+ margin: 0px;
+ border: 2px solid #7f7f7f; /* Bright grey */
+ border-radius: 5px;
+ background-color: #1c1c1c; /* Dark grey */
+ font-family: monospace;
+ font-size: 12px;
+}
+
+#input {
+ margin: 5px;
+ border: 1px solid #1c1c1c; /* Dark grey */
+ color: #d3d3d3; /* Light grey */
+ background-color: #1c1c1c; /* Dark grey */
+}
+
+#input image {
+ color: #d3d3d3; /* Light grey */
+}
+
+#inner-box {
+ margin: 5px;
+ border: none;
+ background-color: #1c1c1c; /* Dark grey */
+}
+
+#outer-box {
+ margin: 5px;
+ border: none;
+ background-color: #1c1c1c; /* Dark grey */
+}
+
+#scroll {
+ margin: 0px;
+ border: none;
+}
+
+#text {
+ margin: 5px;
+ border: none;
+ color: #d3d3d3; /* Light grey */
+}
+
+#entry:selected {
+ background-color: #7f7f7f; /* Bright grey */
+ font-weight: normal;
+}
+
+#text:selected {
+ background-color: #7f7f7f; /* Bright grey */
+ font-weight: normal;
+}
+