summaryrefslogtreecommitdiffstats
path: root/.scripts/cron
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-01-03 20:39:10 -0500
committerLuke Smith <luke@lukesmith.xyz>2019-01-03 20:39:10 -0500
commit77f5084d67485f15dd3f301287516a7bf89b90e2 (patch)
tree09f451499fbf97e4ef56c28397e66bafdbfe7b34 /.scripts/cron
parent0276d90b893513179dfa8b34089513b74121ede1 (diff)
downloadeibhear-77f5084d67485f15dd3f301287516a7bf89b90e2.tar.gz
eibhear-77f5084d67485f15dd3f301287516a7bf89b90e2.tar.zst
eibhear-77f5084d67485f15dd3f301287516a7bf89b90e2.zip
checkup noteless and ignores ignored
Diffstat (limited to '.scripts/cron')
-rwxr-xr-x.scripts/cron/checkup10
1 files changed, 5 insertions, 5 deletions
diff --git a/.scripts/cron/checkup b/.scripts/cron/checkup
index 4838948..016ee90 100755
--- a/.scripts/cron/checkup
+++ b/.scripts/cron/checkup
@@ -3,16 +3,16 @@
ping -q -w 1 -c 1 `ip r | grep -m 1 default | cut -d ' ' -f 3` >/dev/null || exit
-note "Checking for pacakge updates..." "$PIX/larbs.gif"
+notify-send -i "$PIX/larbs.gif" "Checking for pacakge updates..."
-sudo pacman -Syyuw --noconfirm || note "Error downloading updates.
+sudo pacman -Syyuw --noconfirm || notify-send "Error downloading updates.
Check your internet connection, if pacman is already running, or run update manually to see errors."
pkill -RTMIN+8 i3blocks
-if pacman -Qul
+if pacman -Qu | grep -v "[ignored]"
then
- note "Package updates available. Click statusbar icon for update." "$PIX/larbs.gif"
+ notify-send -i "$PIX/larbs.gif" "Package updates available. Click statusbar icon (📦) for update."
else
- note "Repository sync complete. No new packages for update." "$PIX/larbs.gif"
+ notify-send -i "$PIX/larbs.gif" "Repository sync complete. No new packages for update."
fi