cm0002@lemmy.world to linuxmemes@lemmy.world · 2 months agoPosting for a friend lollemmy.worldexternal-linkmessage-square116linkfedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-linkPosting for a friend lollemmy.worldcm0002@lemmy.world to linuxmemes@lemmy.world · 2 months agomessage-square116linkfedilink
minus-squareSnot Flickerman@lemmy.blahaj.zonelinkfedilinkEnglisharrow-up0·2 months agoOut of curiosity, can pacman update flatpaks? Or do you still have to update those independent of your package manager?
minus-squaresuperkret@feddit.orglinkfedilinkarrow-up0·edit-22 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
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.
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