17 lines
556 B
Bash
Executable File
17 lines
556 B
Bash
Executable File
#!/bin/sh
|
|
|
|
pkill -RTMIN+8 dwmblocks
|
|
|
|
askupgrade() {
|
|
[ "$(notify-send -c updates --action=Yes=Yes --action=No=No " Repository Sync" "Updates available. Update now?")" = 'Yes' ] && upgrades
|
|
}
|
|
|
|
\xbps-install -SMun 1>/tmp/xbps_updates 2>/tmp/xbps_errors
|
|
ne="$(grep -c broken /tmp/xbps_errors)"
|
|
n="$(grep -c -e update -e install /tmp/xbps_updates)"
|
|
if [ "$n" != "0" ] && [ "$ne" != "0" ]; then
|
|
notify-send -u critical "Error downloading updates." "$(cut -d " " -f 1,5 /tmp/xbps_errors)"
|
|
elif [ "$n" -gt 1 ] && [ "$ne" = "0" ]; then
|
|
askupgrade
|
|
fi
|