aboutsummaryrefslogtreecommitdiff
path: root/wofi
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2025-09-07 17:55:05 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2025-09-07 17:55:05 +0530
commitf0fd0f9df87943e1107590f54eb9fa14a5986e14 (patch)
tree00d3f891ffc8e3f67e255413eadb273cbee7ced9 /wofi
parentf90b5e959cf308af27896a24d788608bf7dd5e21 (diff)
wofi
Diffstat (limited to 'wofi')
-rw-r--r--wofi/config7
-rw-r--r--wofi/style.css29
2 files changed, 36 insertions, 0 deletions
diff --git a/wofi/config b/wofi/config
new file mode 100644
index 0000000..6e48624
--- /dev/null
+++ b/wofi/config
@@ -0,0 +1,7 @@
+show=drun
+allow_images=true
+lines=10
+width=600
+prompt=Search...
+hide_scroll=true
+term=foot
diff --git a/wofi/style.css b/wofi/style.css
new file mode 100644
index 0000000..4911161
--- /dev/null
+++ b/wofi/style.css
@@ -0,0 +1,29 @@
+window {
+ margin: 0px;
+ border: 2px solid #89b4fa;
+ background-color: #1e1e2e;
+ border-radius: 10px;
+}
+
+#input {
+ margin: 5px;
+ border: none;
+ padding: 8px;
+ color: #cdd6f4;
+ background-color: #313244;
+ border-radius: 8px;
+}
+
+#inner-box {
+ margin: 5px;
+}
+
+#entry {
+ padding: 5px;
+ border-radius: 6px;
+}
+
+#entry:selected {
+ background-color: #89b4fa;
+ color: #1e1e2e;
+}