Fix handling

This commit is contained in:
Alexis Jhon Gaspar 2023-10-15 21:36:59 +08:00
parent 16934ae9f5
commit 1fb1e159ce

View file

@ -61,8 +61,9 @@ settheme() {
setwallq() {
read -p "Do you want to set the wallpaper as well? (default is Yes) " wallpaper
case $wallpaper in
[yY][eE][sS]|[yY]|*) setwall;;
[nN][oO]|[nN]) exit;;
[yY][eE][sS]|[yY]) setwall;;
[nN][oO]|[nN]) command;;
*) setwall;;
esac
}