mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2025-04-21 14:29:14 +02:00
7 lines
119 B
Bash
7 lines
119 B
Bash
#!/bin/sh
|
|
case "$2" in
|
|
up)
|
|
timedatectl set-timezone "$(curl --fail https://ipapi.co/timezone)"
|
|
;;
|
|
esac
|