mirror of
https://github.com/tommytran732/QubesOS-Scripts.git
synced 2025-07-22 21:30:33 -04:00
Reorganize
This commit is contained in:
parent
430f87e0de
commit
bdaa79f107
11 changed files with 1 additions and 1 deletions
7
fedora/emails.sh
Normal file
7
fedora/emails.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
sudo dnf install thunderbird -y
|
||||
|
||||
#Do this in the AppVM after you have set it up
|
||||
#Obviously replace vault-gpg with the actual GPG backend that you are using https://www.qubes-os.org/doc/split-gpg/
|
||||
#echo "vault-gpg" | sudo tee /rw/config/gpg-split-domain
|
47
fedora/fedora.sh
Normal file
47
fedora/fedora.sh
Normal file
|
@ -0,0 +1,47 @@
|
|||
#!/bin/bash
|
||||
|
||||
sudo dnf remove firefox thunderbird totem gnome-remote-desktop gnome-calendar gnome-disk-utility gnome-calculators gnome-weather gnome-contacts gnome-clocks gnome-maps gnome-screenshot gnome-logs gnome-character gnome-font-viewer gnome-color-manager simple-scan keepassxc cheese baobab yelp evince* gedit httpd mozilla* -y
|
||||
sudo dnf autoremove -y
|
||||
sudo dnf config-manager --add-repo https://brave-browser-rpm-release.s3.brave.com/x86_64/
|
||||
curl --proxy http://127.0.0.1:8082 https://brave-browser-rpm-release.s3.brave.com/brave-core.asc > brave-core.asc
|
||||
sudo rpm --import brave-core.asc
|
||||
rm -rf brave-core.asc
|
||||
echo "gpgcheck=1" | sudo tee /etc/yum.repos.d/brave-browser-rpm-release.s3.brave.com_x86_64_.repo
|
||||
sudo dnf install brave-browser arc-theme qubes-u2f qubes-gpg-split ntfs-3g exfatprogs -y
|
||||
|
||||
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
|
||||
|
||||
sudo cat > /etc/systemd/user/update-user-flatpaks.service <<- 'EOF'
|
||||
[Unit]
|
||||
Description=Update user Flatpaks
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/usr/bin/flatpak --user update -y
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
EOF
|
||||
|
||||
sudo cat > /etc/systemd/user/update-user-flatpaks.timer <<- 'EOF'
|
||||
[Unit]
|
||||
Description=Update user Flatpaks daily
|
||||
|
||||
[Timer]
|
||||
OnCalendar=daily
|
||||
Persistent=true
|
||||
|
||||
[Install]
|
||||
WantedBy=timers.target
|
||||
EOF
|
||||
|
||||
sudo cat > /etc/dconf/db/local.d/custom <<- 'EOF'
|
||||
[org/gnome/desktop/interface]
|
||||
gtk-theme='Arc-Dark'
|
||||
icon-theme='Arc'
|
||||
EOF
|
||||
|
||||
sudo dconf update
|
4
fedora/nextcloud.sh
Normal file
4
fedora/nextcloud.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
sudo dnf install nextcloud-client
|
||||
echo "5.226.143.92 cloud.tommytran.io" >> /etc/hosts
|
4
fedora/productivity.sh
Normal file
4
fedora/productivity.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
sudo dnf install -y https://download.onlyoffice.com/repo/centos/main/noarch/onlyoffice-repo.noarch.rpm
|
||||
sudo dnf install -y gnome-calculator onlyoffice-desktopeditors lyx gimp
|
9
fedora/protonvpn.sh
Normal file
9
fedora/protonvpn.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
sudo cat > /etc/dconf/db/local.d/custom <<- 'EOF'
|
||||
[org/gnome/desktop/interface]
|
||||
gtk-theme='Arc-Dark'
|
||||
EOF
|
||||
|
||||
sudo dnf install https://protonvpn.com/download/protonvpn-stable-release-1.0.1-1.noarch.rpm -y
|
||||
sudo dnf install protonvpn -y
|
3
fedora/usb.sh
Normal file
3
fedora/usb.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
sudo dnf install gnome-disk-utility yubikey-manager-qt yubioath-desktop nitrokey-app
|
Loading…
Add table
Add a link
Reference in a new issue