diff --git a/bin/sp-global-shortcuts b/bin/sp-global-shortcuts index a4d20c7..da4a98c 100755 --- a/bin/sp-global-shortcuts +++ b/bin/sp-global-shortcuts @@ -3,6 +3,6 @@ source "/usr/lib/sp-functions" options=$( ls "${conf_dir}/global-shortcuts/" ) -op=$( echo -e "${options}" | wofi -i --dmenu | awk '{print}' ) +op=$( echo -e "${options}" | wofi -i --dmenu -k /dev/null | awk '{print}' ) "${conf_dir}/global-shortcuts/${op}" diff --git a/bin/sp-powermenu b/bin/sp-powermenu index f137963..11719e2 100755 --- a/bin/sp-powermenu +++ b/bin/sp-powermenu @@ -1,6 +1,6 @@ #!/usr/bin/env bash -op=$( echo -e "⏻ Poweroff\n Reboot\n Suspend\n Lock\n Logout" | wofi -i --dmenu -a | awk '{print tolower($2)}' ) +op=$( echo -e "⏻ Poweroff\n Reboot\n Suspend\n Lock\n Logout" | wofi -i --dmenu -a -k /dev/null | awk '{print tolower($2)}' ) case $op in poweroff) ;& diff --git a/bin/sp-screenshot b/bin/sp-screenshot index e58e6b3..158aced 100755 --- a/bin/sp-screenshot +++ b/bin/sp-screenshot @@ -3,7 +3,7 @@ source "/usr/lib/sp-functions" source "${conf_dir}/config" -op=$( echo -e "Output\nWindow\nRegion" | wofi -i --dmenu --width 250 --height 260 | awk '{print tolower($1)}' ) +op=$( echo -e "Output\nWindow\nRegion" | wofi -i --dmenu --width 250 --height 260 -k /dev/null | awk '{print tolower($1)}' ) echo "$op" diff --git a/bin/sp-shortcuts b/bin/sp-shortcuts index 361e69f..99b7560 100755 --- a/bin/sp-shortcuts +++ b/bin/sp-shortcuts @@ -5,6 +5,6 @@ source "/usr/lib/sp-functions" current_profile=$( get_profile_id ) profile_scripts=$( ls "${conf_dir}/profiles/${current_profile}/shortcuts/" ) -op=$( echo -e "${profile_scripts}" | wofi -w 2 -i --dmenu | awk '{print}' ) +op=$( echo -e "${profile_scripts}" | wofi -w 2 -i --dmenu -k /dev/null | awk '{print}' ) "${conf_dir}/profiles/${current_profile}/shortcuts/${op}" diff --git a/debian/changelog b/debian/changelog index 890205b..f862a9d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +sway-profiles (0.3.15) unstable; urgency=medium + + * all wofi menus now output cache to /dev/null to remain ordered statically + + -- Penelope Gwen Thu, 17 Apr 2025 19:44:29 +0000 + sway-profiles (0.3.14) unstable; urgency=medium * added sp-profiles reload