7 lines
136 B
Plaintext
7 lines
136 B
Plaintext
|
#!/bin/sh
|
||
|
case "$2" in
|
||
|
connectivity-change)
|
||
|
timedatectl set-timezone "$(curl --fail https://ipapi.co/timezone)"
|
||
|
;;
|
||
|
esac
|