scripts/get_updates.sh
2021-07-17 22:18:41 -04:00

7 lines
195 B
Bash
Executable file

#!/bin/bash
updates=/tmp/update_list.txt
checkupdates > $updates
notify-send -t 60000 "$(cat $updates | wc -l) packages that require updating..." "$(cat $updates | sed 's/ .*//g')"
rm $updates