cm0002@lemmy.world to linuxmemes@lemmy.world · 12 days agoPosting for a friend lollemmy.worldimagemessage-square128linkfedilinkarrow-up1873arrow-down115
arrow-up1858arrow-down1imagePosting for a friend lollemmy.worldcm0002@lemmy.world to linuxmemes@lemmy.world · 12 days agomessage-square128linkfedilink
minus-squareSnot Flickerman@lemmy.blahaj.zonelinkfedilinkEnglisharrow-up2·12 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-212 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