This commit is contained in:
Tommy
2022-05-30 18:39:18 -04:00
committed by GitHub
parent 08e01c693f
commit 48fd4dacfe
7 changed files with 67 additions and 9 deletions

3
ubuntu/bitwarden.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
sudo snap install bitwarden

3
ubuntu/spotify.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
sudo snap install spotify

29
ubuntu/ubuntu.sh Normal file
View File

@@ -0,0 +1,29 @@
#!/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