summaryrefslogtreecommitdiff
path: root/.scripts/checkupdates
diff options
context:
space:
mode:
author0scar <qgt268@alumni.ku.dk>2021-06-03 21:33:31 +0000
committer0scar <qgt268@alumni.ku.dk>2021-06-03 21:33:31 +0000
commit6e4a15d79352ca2707a3b0d81d158228a7d14704 (patch)
treea526da4169c76175f1e528534d67772bc13dfabb /.scripts/checkupdates
parenta38dc1a774d012b2da71716365d1d254b650dd48 (diff)
Add/move statusbar scripts
Diffstat (limited to '.scripts/checkupdates')
-rwxr-xr-x.scripts/checkupdates15
1 files changed, 0 insertions, 15 deletions
diff --git a/.scripts/checkupdates b/.scripts/checkupdates
deleted file mode 100755
index 5a95974..0000000
--- a/.scripts/checkupdates
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env sh
-set -e
-
-updates=$(pacman -Qu | sed '/\[ignored\]$/d')
-
-case $BLOCK_BUTTON in
- 1) ;& # fallthrough
- 3) if [ -n "${updates}" ]; then
- notify-send -t $((1000 * 20)) "Available updates" "$updates"
- else
- notify-send "Available updates" "No available updates"
- fi;;
-esac
-
-[ -n "$updates" ] && echo $(echo "${updates}" | wc -l) || exit 0