mirror of
https://github.com/tommytran732/QubesOS-Scripts
synced 2024-11-05 10:31:34 -05:00
27 lines
1.4 KiB
Bash
27 lines
1.4 KiB
Bash
#!/bin/bash
|
|
#DNS doesn't work on an AppVM if Lokinet is used in a ProxyVM so Lokinet has to be installed on the AppVM
|
|
#The AppVM needs to be granted the network-manager service
|
|
#There is a risk of leaks because I dont see any killswitch being implemented
|
|
|
|
#Disabling the Arc icon theme here because it looks bad on the systray
|
|
sudo rm -rf /usr/share/icons/Arc
|
|
|
|
echo "[Settings]
|
|
gtk-theme-name=Arc-Dark
|
|
gtk-application-prefer-dark-theme=1" | sudo tee /etc/gtk-3.0/settings.ini
|
|
|
|
echo "[Settings]
|
|
gtk-theme-name=Arc-Dark
|
|
gtk-application-prefer-dark-theme=1" | sudo tee /etc/gtk-4.0/settings.ini
|
|
|
|
|
|
#Actual Installtion
|
|
sudo curl --proxy http://127.0.0.1:8082 -so /etc/apt/trusted.gpg.d/oxen.gpg https://deb.oxen.io/pub.gpg
|
|
echo "deb https://deb.oxen.io $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/oxen.list
|
|
sudo curl --proxy http://127.0.0.1:8082 -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg
|
|
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list
|
|
sudo apt update
|
|
sudo apt install --no-install-recommends brave-browser lokinet-gui resolvconf
|
|
sudo sed -i 's/#exit-node=/exit-node=exit.loki/' /var/lib/lokinet/lokinet.ini
|
|
sudo systemctl enable --now lokinet
|