1
0
mirror of https://github.com/tommytran732/QubesOS-Scripts synced 2024-09-19 23:24:43 -04:00
QubesOS-Scripts/ubuntu/ubuntu.sh

29 lines
928 B
Bash
Raw Normal View History

2022-05-30 18:39:18 -04:00
#!/bin/bash
#Deboat
sudo apt purge -y thunderbird emacs emacs-gtk emacs-bin-common emacs-common keepassx* gnome-settings-daemon ibus* cups* system-config-printer* xsettingsd yelp*
sudo apt autoremove -y
sudo apt autoclean
#Install packages
sudo apt install --no-install-recommends qubes-gpg-split eog qt5ct qt5-style-plugins nautilus arc-theme -y
#Theming
git config --global http.proxy http://127.0.0.1:8082
git clone https://github.com/horst3180/arc-icon-theme
sudo mv arc-icon-theme/Arc /usr/share/icons
rm -rf arc-icon-theme
echo "export QT_QPA_PLATFORMTHEME=gtk2" | sudo tee /etc/environment
sudo mkdir /etc/gtk-3.0
echo "[Settings]
gtk-theme-name=Arc-Dark
gtk-application-prefer-dark-theme=1
gtk-icon-theme-name=Arc" | sudo tee /etc/gtk-3.0/settings.ini
sudo mkdir /etc/gtk-4.0
echo "[Settings]
gtk-theme-name=Arc-Dark
gtk-application-prefer-dark-theme=1
gtk-icon-theme-name=Arc" | sudo tee /etc/gtk-4.0/settings.ini