summaryrefslogtreecommitdiff
path: root/.local/sbin/chtz
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-09-15 01:31:05 +0300
committerThomas Voss <mail@thomasvoss.com> 2023-09-15 01:31:05 +0300
commit3cf95e8ea2baa48babc2253386bc09f60e0ae322 (patch)
tree3bf8454f831e7933cc42a85bca7f29dc023ffab5 /.local/sbin/chtz
parent275d6de472ffe0e295f9478020e9d3a618b54fd1 (diff)
meta: Don’t pass ‘-u normal’ to ‘notify-send’
Diffstat (limited to '.local/sbin/chtz')
-rwxr-xr-x.local/sbin/chtz2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/sbin/chtz b/.local/sbin/chtz
index 413bf40..28fff0f 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##*/}" -u normal 'Timezone changed' \
+ && notify-send -a "${0##*/}" 'Timezone changed' \
"The system timezone was changed to ‘$choice’."