Skip to content

Commit

Permalink
update log messages when installing user programs
Browse files Browse the repository at this point in the history
  • Loading branch information
georglauterbach committed Sep 2, 2024
1 parent 216f9dc commit 319fdb9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -153,18 +153,18 @@ function user_setup() {
fi
bash "${HOME}/.fzf/install" --key-bindings --completion --no-update-rc --no-zsh --no-fish >/dev/null

log 'debug' 'Installing zoxide'
curl -sSfL 'https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/install.sh' | bash
log 'debug' 'Installing / updating zoxide'
curl -sSfL 'https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/install.sh' | bash >/dev/null

log 'debug' 'Installing gitui'
log 'debug' 'Installing / updating gitui'
curl -sSfL "https://github.com/extrawurst/gitui/releases/download/v0.26.1/gitui-linux-$(uname -m).tar.gz" \
| tar -xz -C "${HOME}/.local/bin"

log 'debug' 'Installing Starship'
log 'debug' 'Installing / updating Starship'
curl -sSfL 'https://starship.rs/install.sh' \
| sh -s -- --bin-dir="${HOME}/.local/bin" --force >/dev/null

log 'debug' 'Installing Atuin'
log 'debug' 'Installing / updating Atuin'
curl --proto '=https' --tlsv1.2 -LsSf 'https://github.com/atuinsh/atuin/releases/latest/download/atuin-installer.sh' \
| sh -s -- --quiet --no-modify-path

Expand Down

0 comments on commit 319fdb9

Please sign in to comment.