From 2849e2b9ca02ef8aedad28accc1253bf1940fa94 Mon Sep 17 00:00:00 2001 From: Andre Ramnitz Date: Fri, 15 Dec 2023 23:50:35 +0100 Subject: [PATCH] wofi: add config --- wofi/.config/wofi/config | 5 +++++ wofi/.config/wofi/style.css | 44 +++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 wofi/.config/wofi/config create mode 100644 wofi/.config/wofi/style.css diff --git a/wofi/.config/wofi/config b/wofi/.config/wofi/config new file mode 100644 index 00000000..b10bb627 --- /dev/null +++ b/wofi/.config/wofi/config @@ -0,0 +1,5 @@ +width=20% +allow_images=true +allow_markup=false +term=foot + diff --git a/wofi/.config/wofi/style.css b/wofi/.config/wofi/style.css new file mode 100644 index 00000000..be48048c --- /dev/null +++ b/wofi/.config/wofi/style.css @@ -0,0 +1,44 @@ +window { + margin: 5px; + border: 2px solid #595959; + background-color: rgba(43, 48, 59, 1); +} +#input { + margin: 8px; + border: 2px solid #585858; + color: #b8b8b8; + background-color: #282828; +} +#input:focus { + border-color: lightblue; +} +#outer-box { + margin: 5px; + border: 2px solid f8f8f8; + background-color: f8f8f8; +} +#inner-box { + margin: 5px; + border: 2px solid f8f8f8; + background-color: f8f8f8; +} +#scroll { + margin: 2px; + border: none; +} +#text { + margin: 5px; + border: none; + color: #d8d8d8; +} +#text:selected { + color: #282828; +} +#entry { + margin: 1px; + background-color: #rgba(23,28,39,0.3); +} +#entry:selected { + background-color: lightblue; +} + -- 2.51.2