-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
executable file
·68 lines (43 loc) · 1.67 KB
/
install.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/bin/bash
# Install packages after installing base Debian with no GUI
#Tools
sudo apt install -y smartmontools lm-sensors htop p7zip p7zip-full zip unzip
# xorg minimal
sudo apt install -y xserver-xorg-core
# xorg drivers
sudo apt install -y xserver-xorg-video-nouveau xserver-xorg-video-fbdev xserver-xorg-video-vesa
#Xorg input drivers
sudo apt install -y xserver-xorg-input-evdev
#Xorg misc
sudo apt install -y x11-xserver-utils x11-xkb-utils x11-utils xinit
#Sound
sudo apt install -y alsa-utils
#Window manager
sudo apt install -y ratpoison
#Other stuff
sudo apt install -y xterm rxvt-unicode dunst libnotify-bin
# File Manager (eg. pcmanfm,krusader)
sudo apt install -y emacs w3m mc gvfs gvfs-backends gvfs-fuse thunar thunar-volman
# Printing
sudo apt install -y cups system-config-printer
# Neofetch/HTOP
sudo apt install -y neofetch imagemagick cmatrix
# Various utilities
sudo apt install -y scrot feh gnome-icon-theme gnome-themes-extra arc-theme oxygen-icon-theme gtk2-engines gtk2-engines-pixbuf gtk2-engines-murrine oxygencursors lxappearance
# Browser and Mail client Installation (eg. chromium)
sudo apt install -y firefox-esr qutebrowser
# Aditional packages
sudo apt install -y xpdf ufw firejail
# Install fonts
sudo apt install -y fonts-noto xfonts-terminus fonts-roboto fonts-oxygen
#Music and video packages
sudo apt install -y sox libsox-fmt-all pipewire-audio cmus moc pavucontrol xfburn
#Torrents
sudo apt install -y qbittorrent
#Nvidia
sudo apt install -y linux-headers-amd64
sudo apt install -y nvidia-tesla-470-driver
#Dev
sudo apt install -y curl python3-venv rofi flatpak
sudo apt autoremove
printf "\e[1;32mYou can now reboot! Thanks you.\e[0m\n"