From 76c0619d9568b6c91a6e023f6b64267a724d6f8b Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Fri, 15 Mar 2024 02:04:35 +0100 Subject: [PATCH] Add /etc/localtime --- README.md | 1 + install.sh | 1 + lone-files/localtime | 1 + uninstall.sh | 1 + 4 files changed, 4 insertions(+) create mode 120000 lone-files/localtime diff --git a/README.md b/README.md index 3183331..5a3aa91 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Running `install.sh` or `uninstall.sh` will delete and change some things in you - /etc/locale.gen - /etc/locale.conf - /etc/vconsole.conf +- /etc/localtime - /etc/pacman.conf - /etc/paru.conf - /etc/makepkg.conf diff --git a/install.sh b/install.sh index 049b3da..11e22d3 100755 --- a/install.sh +++ b/install.sh @@ -37,6 +37,7 @@ link "lone-files/bashrc" "etc/bash.bashrc" link "lone-files/locale.gen" "etc/locale.gen" link "lone-files/locale.conf" "etc/locale.conf" link "lone-files/vconsole.conf" "etc/vconsole.conf" +link "lone-files/localtime" "etc/localtime" # arch linux related link "archlinux/pacman.conf" "etc/pacman.conf" diff --git a/lone-files/localtime b/lone-files/localtime new file mode 120000 index 0000000..622b45b --- /dev/null +++ b/lone-files/localtime @@ -0,0 +1 @@ +/usr/share/zoneinfo/Europe/Berlin \ No newline at end of file diff --git a/uninstall.sh b/uninstall.sh index 281dc83..683443c 100755 --- a/uninstall.sh +++ b/uninstall.sh @@ -24,6 +24,7 @@ unlink "etc/bash.bashrc" unlink "etc/locale.gen" unlink "etc/locale.conf" unlink "etc/vconsole.conf" +unlink "etc/localtime" # arch linux related unlink "etc/pacman.conf"