From c54c8ecc4ed5228f94651d793a35136842fd41d3 Mon Sep 17 00:00:00 2001 From: Trevor Vallender Date: Sat, 16 Mar 2024 09:28:04 +0000 Subject: [PATCH] Add wofi config --- .config/wofi/config | 20 ++++++++++++++++++++ .config/wofi/style.css | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 60 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..163574f --- /dev/null +++ b/.config/wofi/config @@ -0,0 +1,20 @@ +hide_scroll=true +show=drun +width=30% +lines=8 +line_wrap=word +term=kitty +allow_markup=true +always_parse_args=false +show_all=true +print_command=true +layer=overlay +allow_images=true +sort_order=alphabetical +gtk_dark=true +prompt= +image_size=20 +display_generic=false +location=center +key_expand=Tab +insensitive=false diff --git a/.config/wofi/style.css b/.config/wofi/style.css new file mode 100644 index 0000000..8b4726c --- /dev/null +++ b/.config/wofi/style.css @@ -0,0 +1,40 @@ +* { + font-family: JetBrainsMono; + color: #e5e9f0; + background: transparent; +} + +#window { + background: rgba(41, 46, 66, 0.5); + margin: auto; + padding: 10px; + border-radius: 20px; + border: 5px solid #b072d1; +} + +#input { + padding: 10px; + margin-bottom: 10px; + border-radius: 15px; +} + +#outer-box { + padding: 20px; +} + +#img { + margin-right: 6px; +} + +#entry { + padding: 10px; + border-radius: 15px; +} + +#entry:selected { + background-color: #2e3440; +} + +#text { + margin: 2px; +}