summaryrefslogtreecommitdiff
path: root/.local/sbin/chtz
blob: 28fff0f2bdf334fc24aba324af1c9c1e94bdf15d (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’."