#!/usr/bin/env bash
echo -e '\nReading the news...\n'
        yay -Pw
echo -e '\nUpdating...\n'
        sudo pacman -Syu
echo -e '\nLooking for orphaned packages...\n'
        yay -Qtd
echo -e '\nLooking for obsolete packages...\n'
        url='https://aur.archlinux.org/rpc?v=5&'
        pacman -Qmq | sort >| /tmp/pkgs
        curl -s "${url}type=info$(printf '&arg[]=%s' $(cat /tmp/pkgs))" \
                | jq -r '.results[]|.Name' | sort | comm -13 - /tmp/pkgs
echo -e '\nLooking for changed config files...\n'
        sudo find /etc -name *.pac*
echo -e '\nDone.\n'
7 points
permalink
report
reply
3 points
*

Love this. One of those extremely satisfying terminal commands to pointlessly run over and over, so much so that I added it to my crontab so I don’t do that 😭

permalink
report
parent
reply
5 points

Switch to printf.

printf "%s\n" "text goes here"

permalink
report
reply
5 points

Your echo statements should be put into a function so you don’t have \n littered throughout your script.

Your url var could be improved. Why have it? If you really want it, why not put type=info in the var?

permalink
report
reply
3 points

Nice, I have a similar one. Things I also do there:

  • flatpak update
  • tldr -u to update tldr pages
  • Check if reboot needed after kernel update, and display a notification about it
permalink
report
reply
3 points

pacman-contrib has pacdiff and paccache I like to run at the end of my update scripts

permalink
report
reply

Arch Linux

!archlinux@lemmy.ml

Create post

The beloved lightweight distro

Community stats

  • 183

    Monthly active users

  • 272

    Posts

  • 1.7K

    Comments

Community moderators