forked from sagor999/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·30 lines (26 loc) · 896 Bytes
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
## install lazygit
#curl -s https://api.github.com/repos/jesseduffield/lazygit/releases/latest \
# | grep "browser_download_url.*Linux_x86_64.tar.gz" \
# | cut -d : -f 2,3 \
# | tr -d \" \
# | wget -O /tmp/lazygit.tar.gz -qi -
#tar xvf /tmp/lazygit.tar.gz lazygit
#sudo mv lazygit /usr/local/bin/
## hide lazygit welcome msg
#mkdir -p ~/.config/lazygit
#echo "startuppopupversion: 5" > ~/.config/lazygit/state.yml
# install k9s
#curl -s https://api.github.com/repos/derailed/k9s/releases/latest \
# | grep "browser_download_url.*Linux_x86_64.tar.gz" \
# | cut -d : -f 2,3 \
# | tr -d \" \
# | wget -O /tmp/k9s.tar.gz -qi -
#tar xvf /tmp/k9s.tar.gz k9s
#sudo mv k9s /usr/local/bin/
# update packages
sudo apt update
# install less utility
sudo apt install less
# symlink manually since gitpod skips this if you have setup.sh present
ln -s ~/.dotfiles/.bash_aliases ~/.bash_aliases