Re: How to setup auto updates
Reply #1 –
I give you my little personal cooking recipe.
On Artix OpenRC XFCE, I installed pamac-gtk after enabling the universe repository :
https://wiki.artixlinux.org/Main/Repositories#Universe
sudo pacman -Sy pamac-gtk
I therefore automatically receive an alert as soon as an update is available.
As a precautionary principle, I use pacman to proceed with the updates.
Thanks to the help received on this forum, I created a launcher that points to a small bash script :
#!/bin/sh
exec xfce4-terminal --maximize -H -x sh -c 'sudo pacman -Syu; sudo paccache -vrk2; exec bash'
You can easily adapt everything for another environment (plasma, cinnamon etc.).