mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-22 06:44:41 +01:00
7 lines
119 B
Plaintext
7 lines
119 B
Plaintext
|
#!/bin/sh
|
||
|
case "$2" in
|
||
|
up)
|
||
|
timedatectl set-timezone "$(curl --fail https://ipapi.co/timezone)"
|
||
|
;;
|
||
|
esac
|