forked from Saumen95/AwsTerm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
deb.sh
54 lines (52 loc) · 1.43 KB
/
deb.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
sudo apt update
# htop
sudo apt-get install htop
# bat
sudo wget "https://github.com/sharkdp/bat/releases/download/v0.10.0/bat_0.10.0_amd64.deb"
sudo dpkg -i bat_0.10.0_amd64.deb
sudo rm bat_0.10.0_amd64.deb
# exa
sudo apt-get install cargo
sudo cargo install exa
# fd
sudo wget "https://github.com/sharkdp/fd/releases/download/v7.3.0/fd_7.3.0_amd64.deb"
sudo dpkg -i fd_7.3.0_amd64.deb
sudo rm fd_7.3.0_amd64.deb
# ripgrep
curl -LO https://github.com/BurntSushi/ripgrep/releases/download/0.10.0/ripgrep_0.10.0_amd64.deb
sudo dpkg -i ripgrep_0.10.0_amd64.deb
sudo rm ripgrep_0.10.0_amd64.deb
#tig
sudo apt-get install tig
# thefuck
sudo apt install python3-dev python3-pip python3-setuptools
sudo pip3 install thefuck
sudo echo 'eval $(thefuck --alias)' >>.bashrc
sudo echo 'eval $(thefuck --alias)' >>.zshrc
# httpie
sudo apt-get install httpie
# asciinema
sudo apt-get install asciinema
# neofetch
sudo apt-get install neofetch
# pstree
sudo apt-get install pstree
# hexyl
sudo wget "https://github.com/sharkdp/hexyl/releases/download/v0.4.0/hexyl_0.4.0_amd64.deb"
sudo dpkg -i hexyl_0.4.0_amd64.deb
sudo rm hexyl_0.4.0_amd64.deb
#nnn
sudo wget https://github.com/jarun/nnn/releases/download/v2.7/nnn_2.7-1_ubuntu18.04.amd64.deb
sudo dpkg -i nnn_2.7-1_ubuntu18.04.amd64.deb
sudo rm nnn_2.7-1_ubuntu18.04.amd64.deb
#aria2
sudo apt install aria2
#mc
sudo apt install mc
#mtr
sudo apt install mtr
#pydf
sudo apt install pydf
#lftp
sudo apt install lftp
source ~/.*rc