From eb807c911f2c364c1c8a8bd67026b997f2b0d2f0 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Thu, 14 May 2026 10:58:38 +0100 Subject: feat(sway): fuzzy search in power menu Drop --hide-search and enable --matching=fuzzy --insensitive so typing 'po' jumps to Poweroff, 'su' to Suspend, etc. --- dot_config/sway/executable_power-menu.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dot_config/sway/executable_power-menu.sh b/dot_config/sway/executable_power-menu.sh index bb5cafa..999259c 100644 --- a/dot_config/sway/executable_power-menu.sh +++ b/dot_config/sway/executable_power-menu.sh @@ -8,7 +8,8 @@ choice=$(printf '%s\n' \ " Logout" \ " Reboot" \ " Poweroff" | - wofi --dmenu --hide-search --prompt='power' \ + wofi --dmenu --prompt='power' \ + --matching=fuzzy --insensitive \ --style "$HOME/.config/wofi/style.css") case "$choice" in -- cgit v1.3.1