diff --git a/home-manager/modules/zsh/select_command.sh b/home-manager/modules/zsh/select_command.sh index 912ecfe..cf7015a 100755 --- a/home-manager/modules/zsh/select_command.sh +++ b/home-manager/modules/zsh/select_command.sh @@ -124,13 +124,13 @@ main() { echo " [number] - Execute mode" echo " n - Add new mode" echo " r[number] - Remove mode (e.g., r1)" - echo " e - Exit" + echo " q - Exit" echo "" read -p "Enter choice: " input case "$input" in - [eE]) + [qQ]) echo "Goodbye!" exit 0 ;;