commit a1d3f63bf6ba6845c7e084ee855be0191888b21a parent 96c3b2046cf283fdb57f08e7b0f0e71a0fe0d703 Author: Markus Hanetzok <markus@hanetzok.net> Date: Mon, 22 Aug 2022 11:07:25 +0200 Add zsh syntax highlighting, refactor git installs Add the AUR repo link for zsh syntax highlighting and made the script keep running if a non-critical git install fails Diffstat:
M | zerog | | | 9 | +++++++-- |
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/zerog b/zerog @@ -13,6 +13,7 @@ logfile="/tmp/zerog.log" # Repos for programs not available in Parabola repos mwrepo="https://aur.archlinux.org/mutt-wizard-git.git" libxftrepo="https://aur.archlinux.org/libxft-bgra.git" +syntaxrepo="https://aur.archlinux.org/zsh-fast-syntax-highlighting.git" ### FUNCTIONS ### @@ -115,8 +116,12 @@ suckless || # Git installs are disabled by default so you can choose if you want to install # these packages from the AUR # -# git_install libxft-bgra "$libxftrepo" || error "Could not install libxft-bgra" -# git_install mutt-wizard "$mwrepo" || error "Could not install mutt-wizard" +# git_install libxft-bgra "$libxftrepo" || +# error "Could not install libxft-bgra" +# git_install mutt-wizard "$mwrepo" || +# warning "Could not install mutt-wizard" +# git_install zsh-fast-syntax-highlighting "$syntaxrepo" || +# warning "Could not install zsh-fast-syntax-highlighting" follow_up || error "Follow up function failed"