From 8437b19f1fdf0fadbe0c151224176c7576940fe7 Mon Sep 17 00:00:00 2001 From: Mark Riedesel Date: Fri, 28 Jun 2024 15:57:38 -0500 Subject: [PATCH] add wofi --- .config/waybar/style.css | 4 ---- .config/wofi/style.css | 26 ++++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 4 deletions(-) create mode 100644 .config/wofi/style.css diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 12f5710..064ffee 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -24,7 +24,6 @@ } } - * { border-radius: 0; border: none; @@ -51,9 +50,6 @@ window#waybar { .modules-left { border-radius: 0 0 10px 0; } -.modules-center { - background: red; -} #backlight, #battery, diff --git a/.config/wofi/style.css b/.config/wofi/style.css new file mode 100644 index 0000000..9a4b9ca --- /dev/null +++ b/.config/wofi/style.css @@ -0,0 +1,26 @@ +* { + font-size: 12pt; + font-family: Envy Code R +} + +window { + background-color: rgba(--wofi-rgb-color0, 0.8); +} + +#entry:selected { + background-color: rgba(--wofi-rgb-color3, 0.8); +} +#text:selected { + color: rgb(--wofi-rgb-color0); +} + +#text { + color: rgb(--wofi-rgb-color3); + padding: 5px; +} + +#input { + margin: 5px; + border: 3px solid rgb(--wofi-rgb-color2); + background-color: rgb(--wofi-rgb-color0); +}