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

32 lines
912 B
Bash
Raw Normal View History

2022-05-25 01:30:39 -04:00
#!/bin/bash
2022-05-25 23:35:16 -04:00
sudo apt purge -y thunderbird emacs emacs-gtk emacs-bin-common emacs-common firefox* keepassxc cups* vim* system-config-printer* xsettingsd xterm* yelp*
2022-05-25 23:33:13 -04:00
sudo apt autoremove -y
sudo apt autoclean
2022-05-25 23:44:30 -04:00
sudo apt install -y qt5ct qt5-style-plugins arc-theme
2022-05-25 22:19:38 -04:00
2022-05-26 00:35:09 -04:00
git config --global http.proxy http://127.0.0.1:8082
git clone https://github.com/horst3180/arc-icon-theme
mv arc-icon-theme/Arc /usr/share/icons
rm -rf arc-icon-theme
echo "export export QT_QPA_PLATFORMTHEME=gtk2" | sudo tee /etc/environment
2022-05-25 23:22:56 -04:00
sudo mkdir /etc/gtk-3.0
echo '[Settings]
gtk-theme-name=Arc-Dark
gtk-application-prefer-dark-theme=1
' | 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
' | sudo tee /etc/gtk-4.0/settings.ini
2022-05-26 00:35:09 -04:00
sudo cat > /etc/dconf/db/local.d/custom <<- 'EOF'
[org/gnome/desktop/interface]
gtk-theme='Arc-Dark'
icon-theme='Arc'
EOF