sb-pacpackages (926B)
1 #!/bin/sh 2 3 # Displays number of upgradeable packages. 4 # For this to work, have a `pacman -Sy` command run in the background as a 5 # cronjob every so often as root. This script will then read those packages. 6 # When clicked, it will run an upgrade via pacman. 7 # 8 # Add the following text as a file in /usr/share/libalpm/hooks/statusbar.hook: 9 # 10 # [Trigger] 11 # Operation = Upgrade 12 # Type = Package 13 # Target = * 14 # 15 # [Action] 16 # Description = Updating statusbar... 17 # When = PostTransaction 18 # Exec = /usr/bin/pkill -RTMIN+8 dwmblocks # Or i3blocks if using i3. 19 20 case $1 in 21 1) setsid -f "$TERMINAL" -e sb-popupgrade ;; 22 2) notify-send "$(/usr/bin/pacman -Qu)" ;; 23 3) notify-send "🎁 Upgrade module" "📦: number of upgradable packages 24 - Left click to upgrade packages 25 - Middle click to show upgradable packages" ;; 26 8) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;; 27 esac 28 29 pacman -Qu | grep -Fcv "[ignored]" | sed "s/^/📦/;s/^📦0$//g"