From d15a2db58b6ed2538a313aefc5a556c3b6e4ac00 Mon Sep 17 00:00:00 2001 From: NotXia <35894453+NotXia@users.noreply.github.com> Date: Thu, 27 Jun 2024 16:27:08 +0200 Subject: [PATCH] Add wofi config --- .config/wofi/config | 6 ++++++ .config/wofi/style.css | 44 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 .config/wofi/config create mode 100644 .config/wofi/style.css diff --git a/.config/wofi/config b/.config/wofi/config new file mode 100644 index 0000000..772db93 --- /dev/null +++ b/.config/wofi/config @@ -0,0 +1,6 @@ +allow_images=true +hide_scroll=true +no_actions=false +term=alacritty +mode=drun +--show diff --git a/.config/wofi/style.css b/.config/wofi/style.css new file mode 100644 index 0000000..176828f --- /dev/null +++ b/.config/wofi/style.css @@ -0,0 +1,44 @@ +* { + font-family: "Hack", monospace; +} + +window { + background-color: #303030; + border-radius: 10px; +} + +#input { + margin: 5px; + border-radius: 0px; + border: none; + background-color: #3a3a3a; + color: white; +} + +#inner-box { + background-color: #3a3a3a; + border-radius: 10px; +} + +#outer-box { + margin: 2px; + padding: 10px; + background-color: #303030; +} + +#scroll { + margin: 5px; +} + +#text { + padding: 4px; + color: white; +} + +#entry:selected { + background-color: #4b4b4b; +} + +#text:selected { + background: transparent; +}