diff --git a/.config/wofi/config b/.config/wofi/config new file mode 100644 index 0000000..772db93 --- /dev/null +++ b/.config/wofi/config @@ -0,0 +1,6 @@ +allow_images=true +hide_scroll=true +no_actions=false +term=alacritty +mode=drun +--show diff --git a/.config/wofi/style.css b/.config/wofi/style.css new file mode 100644 index 0000000..176828f --- /dev/null +++ b/.config/wofi/style.css @@ -0,0 +1,44 @@ +* { + font-family: "Hack", monospace; +} + +window { + background-color: #303030; + border-radius: 10px; +} + +#input { + margin: 5px; + border-radius: 0px; + border: none; + background-color: #3a3a3a; + color: white; +} + +#inner-box { + background-color: #3a3a3a; + border-radius: 10px; +} + +#outer-box { + margin: 2px; + padding: 10px; + background-color: #303030; +} + +#scroll { + margin: 5px; +} + +#text { + padding: 4px; + color: white; +} + +#entry:selected { + background-color: #4b4b4b; +} + +#text:selected { + background: transparent; +}