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