diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 3d09f8a..ccc75ad 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -12,7 +12,7 @@ monitor=,preferred,1920x1080@144,auto-left # See https://wiki.hypr.land/Configuring/Keywords/ $terminal = kitty $fileManager = dolphin -$menu = wofi --show drun +$menu = wofi show --conf ~/dots/.config/wofi/config $browser = zen-browser ################# @@ -186,7 +186,7 @@ bind = $mainMod, T, exec, Telegram bind = $mainMod, B, exec, $browser bind = $mainMod, C, killactive, bind = $mainMod, M, exit, -bind = $mainMod, E, exec, $fileManager +bind = $mainMod, D, exec, $fileManager bind = $mainMod, V, togglefloating, bind = $mainMod, R, exec, $menu bind = $mainMod, P, pseudo, # dwindle diff --git a/.config/wofi/config b/.config/wofi/config new file mode 100644 index 0000000..5bf9711 --- /dev/null +++ b/.config/wofi/config @@ -0,0 +1,12 @@ +mode=drun +width=600 +height=400 +allow_markup=true +no_actions=true +halign=fill +orientation=vertical +content_halign=fill +insensitive=true +allow_images=true +image_size=40 +hide_scroll=true diff --git a/.config/wofi/style.css b/.config/wofi/style.css new file mode 100644 index 0000000..0ef36a6 --- /dev/null +++ b/.config/wofi/style.css @@ -0,0 +1,51 @@ +window { + font-family: "DejaVu Sans", "Font Awesome 5 Free"; + margin: 0px; + border: 1px solid rgba(0, 0, 0, 0.9); + background-color: rgba(29, 31, 33, 0.95); + border-radius: 10px; +} + +#input { + margin: 5px; + border: none; + color: #f8f8f2; + background-color: rgba(55, 59, 65, 0.95); +} + +#inner-box { + margin: 5px; + border: none; + background-color: transparent; +} + +#outer-box { + margin: 5px; + border: none; + background-color: transparent; +} + +#scroll { + margin: 0px; + border: none; +} + +#text { + margin: 5px; + border: none; + color: #c5c8c6; +} + +#entry { + border: none; +} + +#entry:focus { + border: none; +} + +#entry:selected { + background-color: rgba(55, 59, 65, 0.95); + border-radius: 5px; + border: none; +}