-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinuxstuff.sh
More file actions
80 lines (79 loc) · 2.2 KB
/
linuxstuff.sh
File metadata and controls
80 lines (79 loc) · 2.2 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/sh
#github desktop
echo adding github desktop public key...
wget -qO - https://packagecloud.io/shiftkey/desktop/gpgkey | sudo apt-key add -
wait
echo adding desktop repo...
sudo sh -c 'echo "deb [arch=amd64] https://packagecloud.io/shiftkey/desktop/any/ any main" > /etc/apt/sources.list.d/packagecloud-shiftky-desktop.list'
wait
echo installing github desktop...
sudo apt install github-desktop
wait
#install gdebi
echo installing gdebi...
sudo apt install gdebi
wait
#install visual studio code
echo installing vscode via terminal...
wget -O ~/Downloads/code_1.54.3-1615806378_arm64.deb https://code.visualstudio.com/docs/?dv=linux64_deb
sudo gdebi ~/Downloads/code_1.54.3-1615806378_arm64.deb
wait
#install terminus
echo installing terminus via terminal...
sudo apt-get update
wait
sudo apt-get install terminator
wait
echo installing discord canary via terminal...
wget -O ~/Downloads/discord-0.0.14.deb https://discord.com/api/download?platform=linux&format=deb
sudo gdebi ~/Downloads/discord-0.0.14.deb
#install Figma design studio
echo adding Figma repo...
wait
sudo add-apt-repository ppa:chrdevs/figma
echo updating apt repos...
sudo apt update
echo installing Figma...
sudo apt install figma-linux-beta -y
wait
#install checkra1n
echo adding apt repo
Add our APT repo: echo "deb https://assets.checkra.in/debian /" | sudo tee -a /etc/apt/sources.list
wait
echo adding checkra1n public key
Add our public key: sudo apt-key adv --fetch-keys https://assets.checkra.in/debian/archive.key
wait
echo updating apt repos
sudo apt update
wait
echo installing checkra1n package
sudo apt install checkra1n -y
wait
#install alva design studio
# echo cding into Downloads folder...
# cd ~/Downloads
# wait
# echo correcting permissions to Alva...
# chmod a+x ./Alva-0.9.1.AppImage
# echo running Alva
# ./Alva-0.9.1.AppImage
#cd to home folder
echo cding to home folder...
cd
# install hacking tools
echo installing git
sudo apt-get install git
wait
echo installing katoolin
git clone https://github.com/LionSec/katoolin.git && cp katoolin/katoolin.py /usr/bin/katoolin
wait
echo setting katoolin permissions
chmod +x /usr/bin/katoolin
echo running katoolin
katoolin
wait
echo finishing everything up
apt full-upgrade -y
wait
echo DONE.
exit