From a0ae78445382c124a44f9a28c6084ccd8dd50fe3 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sat, 19 Aug 2023 15:12:17 +0200 Subject: wofi: Add wofi configuration --- .config/wofi/config | 7 +++++++ .config/wofi/style.css | 30 ++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 .config/wofi/config create mode 100644 .config/wofi/style.css (limited to '.config') diff --git a/.config/wofi/config b/.config/wofi/config new file mode 100644 index 0000000..d0e63b6 --- /dev/null +++ b/.config/wofi/config @@ -0,0 +1,7 @@ +prompt=input… +height=50% +width=50% +insensitive=true +key_up=Control_L-k +key_down=Control_L-j +layer=overlay diff --git a/.config/wofi/style.css b/.config/wofi/style.css new file mode 100644 index 0000000..3f2f6ff --- /dev/null +++ b/.config/wofi/style.css @@ -0,0 +1,30 @@ +* { + border: none; + border-radius: 3px; + color: rgb(197, 200, 198); + font-size: 28px; + font-family: 'Iosevka Smooth'; +} + +#outer-box { + border: 3px solid #FAA14F; +} + +#window { + background-color: rgba(43, 48, 59, 0.9); +} + +#input { + /* Hack to just inherit from ‘#window’ */ + background-color: rgba(0, 0, 0, 0); + border-radius: 0; + border-bottom: 3px solid #FAA14F; +} + +#entry, #input { + padding: .25em .5em; +} + +#entry:selected { + background-color: rgba(65, 72, 89, 0.9); +} -- cgit v1.2.3