mirror of
https://github.com/tommytran732/QubesOS-Scripts.git
synced 2025-05-13 03:32:16 -04:00
Fixes
This commit is contained in:
parent
fa250cb1e5
commit
eeea452d0b
1 changed files with 24 additions and 0 deletions
|
@ -17,3 +17,27 @@ sudo cat > /etc/dconf/db/local.d/custom <<- 'EOF'
|
||||||
gtk-theme='Arc-Dark'
|
gtk-theme='Arc-Dark'
|
||||||
icon-theme='Arc'
|
icon-theme='Arc'
|
||||||
EOF
|
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
|
Loading…
Add table
Add a link
Reference in a new issue