diff options
Diffstat (limited to '.local/sbin')
-rwxr-xr-x | .local/sbin/stz | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.local/sbin/stz b/.local/sbin/stz index 9091d29..7a6fdc6 100755 --- a/.local/sbin/stz +++ b/.local/sbin/stz @@ -2,9 +2,7 @@ set -e -choice="`timedatectl list-timezones \ - | grep './.' \ - | wofi -dMfuzzy -Oalphabetical`" +choice="`timedatectl list-timezones | grep './.' | osel`" [ -n "$choice" ] \ && sudo timedatectl set-timezone "$choice" \ |