cm0002@lemmy.world to linuxmemes@lemmy.world · 3 months agoPosting for a friend lollemmy.worldimagemessage-square128linkfedilinkarrow-up1885arrow-down116
arrow-up1869arrow-down1imagePosting for a friend lollemmy.worldcm0002@lemmy.world to linuxmemes@lemmy.world · 3 months agomessage-square128linkfedilink
minus-squaresuperkret@feddit.orglinkfedilinkarrow-up3·edit-23 months agoIt can’t. I use a very simple script to combine updates and the basics of system maintenance. Update.sh: #!/usr/bin/env bash systemctl --failed -q yay -Pw sudo pacman -Syu flatpak update flatpak uninstall --unused pacman -Qqnte > ~/.local/share/applications/pkglist.txt pacman -Qqdtt > ~/.local/share/applications/optdeplist.txt pacman -Qqem > ~/.local/share/applications/foreignpkglist.txt pacman -Qtd pacman -Qm | grep -v yay-bin sudo find /etc -name *.pac* yay -Ps | grep Cache
It can’t. I use a very simple script to combine updates and the basics of system maintenance.
Update.sh:
#!/usr/bin/env bash systemctl --failed -q yay -Pw sudo pacman -Syu flatpak update flatpak uninstall --unused pacman -Qqnte > ~/.local/share/applications/pkglist.txt pacman -Qqdtt > ~/.local/share/applications/optdeplist.txt pacman -Qqem > ~/.local/share/applications/foreignpkglist.txt pacman -Qtd pacman -Qm | grep -v yay-bin sudo find /etc -name *.pac* yay -Ps | grep Cache