blob: 7a6fdc6b243444d137664134d386cb033e1fcacb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
set -e
choice="`timedatectl list-timezones | grep './.' | osel`"
[ -n "$choice" ] \
&& sudo timedatectl set-timezone "$choice" \
&& notify-send -a "${0##*/}" -u normal 'Timezone changed' \
"The system timezone was changed to ‘$choice’."
|