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