diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-09-02 13:42:44 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-09-02 13:42:44 +0200 |
commit | 1973881fd17aceaec47fea6d479412b8ac72b3a4 (patch) | |
tree | 42addaca6f65b5e1acc67dcd06033e2bb8c7623f | |
parent | 05883395b44ac0e100b21b40f0218609c84caeec (diff) |
Install tty-clock from AUR on arch, not debian
-rwxr-xr-x | shell_only.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell_only.sh b/shell_only.sh index 6837c42..8e2b0a9 100755 --- a/shell_only.sh +++ b/shell_only.sh @@ -57,6 +57,9 @@ if command_exists pacman; then vim \ neofetch \ fzf + + git clone https://aur.archlinux.org/tty-clock-git.git + (cd tty-clock-git && makepkg -i) elif command_exists apt; then ${SUDO} apt update ${SUDO} apt install -y \ @@ -78,9 +81,6 @@ elif command_exists apt; then vim \ neofetch \ fzf - - git clone https://aur.archlinux.org/tty-clock-git.git - (cd tty-clock-git && makepkg -i) else echo "Your distro is not supported." exit 1 |