From c3179d6141b0aaabc57555de4583351beaafc36d Mon Sep 17 00:00:00 2001 From: templis Date: Tue, 18 Feb 2020 20:57:19 +0100 Subject: [PATCH] Add wofi --- .config/wofi/config | 5 +++++ .config/wofi/style.css | 45 ++++++++++++++++++++++++++++++++++++++++++ 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..b9b24f1 --- /dev/null +++ b/.config/wofi/config @@ -0,0 +1,5 @@ +width=600 +height=400 +mode=drun +colors=colors +filter_rate=100 diff --git a/.config/wofi/style.css b/.config/wofi/style.css new file mode 100644 index 0000000..456954d --- /dev/null +++ b/.config/wofi/style.css @@ -0,0 +1,45 @@ +* { + border: none; + border-radius: 0; + font-family: Sans; + font-size: 15px; + box-shadow: none; + text-shadow: none; + transition-duration: 0s; +} + +window { + margin: 5px; + border: none; + color: rgba(217, 216, 216, 1); + background: rgba(35, 31, 32, 0.80); +} + +#input { + margin: 5px; + border: none; + background-color: #DBC7E4; +} + +#inner-box { + margin: 5px; + border: none; + background-color: rgba(35, 31, 32, 0.80); +} + +#outer-box { + margin: 5px; + border: none; + background-color: #1E122; + display: none; +} + +#scroll { + margin: 5px; + background-color: black; +} + +#text { + margin: 5px; + border: 0px solid black; +}