From 83bc200e825c553fa73d638fbaa9facfdd7bf77c Mon Sep 17 00:00:00 2001 From: dichgrem Date: Wed, 9 Jul 2025 11:21:08 +0800 Subject: [PATCH] add:wofi --- wofi/config | 6 ++++++ wofi/style.css | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 wofi/config create mode 100644 wofi/style.css diff --git a/wofi/config b/wofi/config new file mode 100644 index 0000000..772db93 --- /dev/null +++ b/wofi/config @@ -0,0 +1,6 @@ +allow_images=true +hide_scroll=true +no_actions=false +term=alacritty +mode=drun +--show diff --git a/wofi/style.css b/wofi/style.css new file mode 100644 index 0000000..6fde282 --- /dev/null +++ b/wofi/style.css @@ -0,0 +1,46 @@ +* { + font-family: "Hack", monospace; +} + +window { + background-color: #3B4252; +} + +#input { + margin: 5px; + border-radius: 0px; + border: none; + background-color: #3B4252; + color: white; +} + +#inner-box { + background-color: #383C4A; +} + +#outer-box { + margin: 2px; + padding: 10px; + background-color: #383C4A; +} + +#scroll { + margin: 5px; +} + +#text { + padding: 4px; + color: white; +} + +#entry:nth-child(even){ + background-color: #404552; +} + +#entry:selected { + background-color: #4C566A; +} + +#text:selected { + background: transparent; +}