From e4da95c084a8cf96569e71956223e7755959c0e2 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sat, 25 May 2024 12:31:57 +0200 Subject: [PATCH] adding wofi config --- wofi/config | 5 +++++ wofi/style.css | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 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..c43339d --- /dev/null +++ b/wofi/config @@ -0,0 +1,5 @@ +show=drun +prompt= +width=30% +term=alacritty +matching=fuzzy diff --git a/wofi/style.css b/wofi/style.css new file mode 100644 index 0000000..30f2c5a --- /dev/null +++ b/wofi/style.css @@ -0,0 +1,50 @@ +* { + font-family: "JetBrainsMono Nerd Font"; + color: #eceef4; + background: transparent; +} + +window { + margin: 0px; + background-color: #0C0D14; +} + +#input { + border: none; + background-color: #0D0F17; + padding: 12px; +} + +#inner-box { + border: none; + background-color: transparent; + padding: 12px; +} + +#outer-box { + border: none; + background-color: transparent; +} + +#scroll { + margin: 0px; + border: none; +} + +#text { + margin: 5px; + border: none; +} + +#entry { + border: none; +} + +#entry:focus { + border: none; +} + +#entry:selected { + background-color: #191B2B; + border: none; +}