1
0
mirror of https://github.com/tommytran732/QubesOS-Scripts synced 2024-11-05 02:21:33 -05:00
This commit is contained in:
Tommy 2022-05-26 17:20:33 -04:00 committed by GitHub
parent fa250cb1e5
commit eeea452d0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,3 +17,27 @@ sudo cat > /etc/dconf/db/local.d/custom <<- 'EOF'
gtk-theme='Arc-Dark'
icon-theme='Arc'
EOF
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