mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
11 lines
363 B
Bash
Executable File
11 lines
363 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Select and set the system timezone
|
|
# omarchy:group=menu
|
|
# omarchy:name=timezone
|
|
|
|
timezone=$(timedatectl list-timezones | omarchy-menu-select "Set timezone" -- --width 520 --maxheight 520) || exit 1
|
|
sudo timedatectl set-timezone "$timezone"
|
|
omarchy-shell -q Clock refresh
|
|
omarchy-notification-send "Timezone is now set to $timezone"
|