mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2024-12-20 12:53:35 +01:00
7 lines
119 B
Bash
Executable File
7 lines
119 B
Bash
Executable File
#!/bin/sh
|
|
case "$2" in
|
|
up)
|
|
timedatectl set-timezone "$(curl --fail https://ipapi.co/timezone)"
|
|
;;
|
|
esac
|