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