# Get rid of Kali xfce
apt remove kali-desktop-xfce --allow-remove-essential
apt purge kali-desktop-xfce --autoremove
# Install xfce
apt install xfce4 lightdm
# Get rid of firefox
apt remove firefox-esr --allow-remove-essential
apt purge firefox-esr --autoremove
# Install Edge, VS Code, and Git
lsb_release -a
curl -sSL -O https://packages.microsoft.com/config/<distro>/<version>/packages-microsoft-prod.deb
dpkg -i packages-microsoft-prod.deb
apt install microsoft-edge-stable code git
# Get rid of libreoffice
apt purge libreoffice* --autoremove
apt clean
# Install Synaptics DisplayLink driver
curl -sSL -O https://www.synaptics.com/sites/default/files/Ubuntu/pool/stable/main/all/synaptics-repository-keyring.deb
dpkg -i synaptics-repository-keyring.deb
apt install displaylink-driver
# Blacklist nouveau driver
cat <<EOF | sudo tee /etc/modprobe.d/blacklist-nouveau.conf
blacklist nouveau
options nouveau modeset=0
EOF
update-initramfs -u
reboot
# Install Nvidia driver
apt install nvidia-driver
Last active
June 6, 2025 07:34
-
-
Save timsonner/8132c8723d987bae4a04141f0cd6bc9a to your computer and use it in GitHub Desktop.
Remove firefox, libreoffice, and kali-desktop-xfce. Install Edge, VS Code, Git, Xfce, and Synaptics DisplayLink driver.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment