Dateien hochladen nach „“
This commit is contained in:
23
install.sh
Normal file
23
install.sh
Normal file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
# Add contrib and non-free to repositories
|
||||
sed -i '/deb http:\/\/deb.debian.org\/debian\/ bullseye main/s/$/ contrib non-free/' /etc/apt/sources.list
|
||||
|
||||
# Add Enpass to repositories
|
||||
echo "deb https://apt.enpass.io/ stable main" > /etc/apt/sources.list.d/enpass.list
|
||||
wget -O - https://apt.enpass.io/keys/enpass-linux.key | tee /etc/apt/trusted.gpg.d/enpass.asc
|
||||
|
||||
# Uninstall unnecessary packages
|
||||
apt-get -y purge libreoffice* atril xfce4-dict ristretto xsane hv3 exfalso parole xterm mousepad
|
||||
apt-get -y autoremoveapt
|
||||
|
||||
# Upgrade and install software
|
||||
apt-get update
|
||||
apt-get -y upgrade
|
||||
apt-get -y install enpass gedit xfce4-screenshooter flameshot
|
||||
|
||||
# Apply Intel "Tear Free" driver fix
|
||||
mkdir -p /etc/X11/xorg.conf.d
|
||||
echo "Section \"Device\"
|
||||
Identifier \"Intel Graphics\"
|
||||
Option \"TearFree\" \"true\"
|
||||
EndSection" > /etc/X11/xorg.conf.d/20-intel.conf
|
Reference in New Issue
Block a user