blob: 42380d4696c2ff5a9f65276e1f1ee39897718015 (
plain)
1
2
3
4
5
6
|
#!/usr/bin/env bash
# Shim so the packaged `passmenu` works on Wayland without the AUR `dmenu-wl`.
# `passmenu` hard-codes `dmenu-wl` under Wayland; fuzzel --dmenu is a
# dmenu-compatible drop-in from the official repos that, unlike bemenu, takes
# keyboard focus correctly under KWin (Plasma Wayland).
exec fuzzel --dmenu --prompt='pass ❯ ' "$@"
|