From cbf7a37144150fb37fbdfc3907c360b44ab95388 Mon Sep 17 00:00:00 2001 From: 2ndbeam <2ndbeam@disroot.org> Date: Wed, 22 Jan 2025 18:18:24 +0300 Subject: [PATCH] Added wofi styling --- wofi/config | 6 ++++++ wofi/style.css | 23 +++++++++++++++++++++++ 2 files changed, 29 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..433fd4c --- /dev/null +++ b/wofi/config @@ -0,0 +1,6 @@ +width=15% +height=1028 +location=left +insensitive=true +x=8 +prompt=Search diff --git a/wofi/style.css b/wofi/style.css new file mode 100644 index 0000000..a43aa08 --- /dev/null +++ b/wofi/style.css @@ -0,0 +1,23 @@ +#expander-box, #window, #input { + background-color: rgba(44, 37, 46, 0.7); + border-radius: 0; + color: white; + font-family: SourceCodePro; + font-size: 11pt; +} + +#window, #input { + border: 2px solid #81a1c1; +} + +#expander-box { + padding-left: 2px; + padding-right: 2px; +} + +#entry:selected { + background-color: #2c3746; + border-top: 2px solid #eceff4; + border-bottom: 2px solid #eceff4; + border-radius: 0; +}