cm0002@lemmy.world to linuxmemes@lemmy.world · 23 days agoPosting for a friend lollemmy.worldimagemessage-square129linkfedilinkarrow-up1881arrow-down115
arrow-up1866arrow-down1imagePosting for a friend lollemmy.worldcm0002@lemmy.world to linuxmemes@lemmy.world · 23 days agomessage-square129linkfedilink
minus-squareSnot Flickerman@lemmy.blahaj.zonelinkfedilinkEnglisharrow-up2·23 days agoOut of curiosity, can pacman update flatpaks? Or do you still have to update those independent of your package manager?
minus-squaresuperkret@feddit.orglinkfedilinkarrow-up3·edit-223 days agoIt can’t. I use a very simple script to combine updates and the basics of system maintenance: #!/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
Out of curiosity, can pacman update flatpaks? Or do you still have to update those independent of your package manager?
It can’t. I use a very simple script to combine updates and the basics of system maintenance:
#!/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