-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebian-setup.sh
95 lines (79 loc) · 2.22 KB
/
debian-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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/bin/bash
# Prerequisites
apt install \
curl \
wget \
git \
-y
# Enable 32bit package support (for Wine)
sudo dpkg --add-architecture i386
# Flatpak installation
apt install flatpak -y
apt install gnome-software-plugin-flatpak -y
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
# Internet
flatpak install flathub com.discordapp.Discord -y
flatpak install flathub org.qbittorrent.qBittorrent -y
# Creative
apt install \
blender \
gimp \
krita \
-y
flatpak install flathub com.obsproject.Studio -y
# Gaming
apt install \
steam \
gamemode \
-y
flatpak install flathub net.lutris.Lutris -y
flatpak install flathub org.prismlauncher.PrismLauncher -y
# Wine setup
mkdir -pm755 /etc/apt/keyrings
wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/bullseye/winehq-bullseye.sources
apt update && apt install --install-recommends winehq-staging -y
# Productivity
apt install \
libreoffice \
neofetch \
-y
curl -fsSL https://raw.githubusercontent.com/nagygergo/jetbrains-toolbox-install/master/jetbrains-toolbox.sh | bash
flatpak install flathub com.visualstudio.code-oss -y
# Liquorix Kernel
# OLD: curl 'https://liquorix.net/install-liquorix.sh' | bash
# echo "deb http://liquorix.net/debian sid main future" > /etc/apt/sources.list
# apt-get update && apt-get install '^liquorix-([^-]+-)?keyring.?'
# apt install \
# linux-image-liquorix-amd64
# linux-headers-liquorix-amd64
# -y
# Window Manager tools
apt install \
bspwm \
sxhkd \
feh \
polybar \
dunst \
rofi \
thunar \
kde-spectacle \
picom \
-y
# Fonts
apt install \
fonts-font-awesome \
fonts-noto \
fonts-material-design-icons-iconfont \
-y
# XanMod Kernel
echo 'deb http://deb.xanmod.org releases main' | sudo tee /etc/apt/sources.list.d/xanmod-kernel.list
wget -qO - https://dl.xanmod.org/gpg.key | sudo apt-key --keyring /etc/apt/trusted.gpg.d/xanmod-kernel.gpg add -
apt update && \
apt install \
linux-xanmod-x64v3 \
-y
echo -e "\nSETTING UP CONFIGS\n"
# Config setup
./config-setup.sh
echo -e "\nSETUP COMPLETE\n"