mirror of
https://github.com/tommytran732/QubesOS-Scripts
synced 2024-11-04 18:11:34 -05:00
27 lines
942 B
Bash
27 lines
942 B
Bash
#!/bin/bash
|
|
|
|
xfconf-query -c xsettings -p /Net/ThemeName -s 'Arc-Dark'
|
|
xfconf-query -c xfwm4 -p /general/theme -s 'Default'
|
|
|
|
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
|
|
|
|
sudo qubes-dom0-update qubes-u2f-dom0 qubes-yubikey-dom0 qt5ct qt5-qtstyleplugins
|
|
qvm-service --enable personal qubes-u2f-proxy
|
|
qvm-service --enable work qubes-u2f-proxy
|
|
|
|
echo "export export QT_QPA_PLATFORMTHEME=gtk2" | sudo tee /etc/environment
|
|
|
|
#Obviously replace vault-gpg with the actual GPG backend that you are using https://www.qubes-os.org/doc/split-gpg/
|
|
echo "emails vault-gpg allow" | sudo tee /etc/qubes-rpc/policy/qubes.Gpg
|
|
echo "@anyvm @anyvm ask,default_target=vault-gpg" | sudo tee -a /etc/qubes-rpc/policy/qubes.Gpg
|