mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-21 14:23:32 +01: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
|