blob: f6a64440800cad50f60bb11017815038f37afa2f (
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 "${0##*/}" timezone 'Timezone Changed' \
		"The system timezone was changed to ‘$choice’"
 
  |