diff options
Diffstat (limited to '.local')
| -rwxr-xr-x | .local/sbin/chtz | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/.local/sbin/chtz b/.local/sbin/chtz index c32573a..f6a6444 100755 --- a/.local/sbin/chtz +++ b/.local/sbin/chtz @@ -4,5 +4,5 @@ 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’." +	&& notify "${0##*/}" timezone 'Timezone Changed' \ +		"The system timezone was changed to ‘$choice’" |