omarchy/bin/omarchy-cmd-tzupdate
David Heinemeier Hansson 028c07d016 Install tzupdate on demand
2025-08-24 16:36:10 +02:00

11 lines
242 B
Bash
Executable File

#!/bin/bash
if ! command -v tzupdate &>/dev/null; then
yay -S --noconfirm --needed tzupdate
fi
sudo tzupdate
new_timezone=$(timedatectl show -p Timezone --value)
omarchy-restart-waybar
notify-send "Timezone has been set to $new_timezone"