From 39620b0df10babbe9abd6ba91623cf8c931cf8d5 Mon Sep 17 00:00:00 2001 From: duma97 Date: Sat, 15 Nov 2025 12:52:25 +0400 Subject: [PATCH] Added wofi style and config --- wofi/config | 14 +++++++++++++ wofi/style.css | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 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..0e25843 --- /dev/null +++ b/wofi/config @@ -0,0 +1,14 @@ +width=600 +height=400 +location=center +show=drun +prompt=Search Apps +filter_rate=100 +allow_markup=true +no_actions=true +halign=fill +orientation=vertical +content_halign=fill +insensitive=true +allow_images=true +image_size=32 diff --git a/wofi/style.css b/wofi/style.css new file mode 100644 index 0000000..96ffa58 --- /dev/null +++ b/wofi/style.css @@ -0,0 +1,55 @@ +* { + font-family: "CodeNewRoman Nerd Font Propo"; + font-size: 14px; +} + +window { + margin: 0px; + border: 3px solid #89b4fa; + background-color: #1e1e2e; + border-radius: 15px; +} + +#input { + margin: 10px; + padding: 8px 15px; + border: none; + color: #cdd6f4; + background-color: #313244; + border-radius: 10px; +} + +#inner-box { + margin: 5px; + padding: 10px; + background-color: transparent; +} + +#outer-box { + margin: 5px; + padding: 5px; + background-color: transparent; +} + +#scroll { + margin: 0px; + border: none; +} + +#entry { + padding: 5px; + border-radius: 8px; +} + +#entry:selected { + background-color: #89b4fa; + color: #1e1e2e; +} + +#text { + color: #cdd6f4; +} + +#text:selected { + color: #1e1e2e; +}