diff options
Diffstat (limited to '.local')
| -rwxr-xr-x | .local/bin/cron/checkup | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/.local/bin/cron/checkup b/.local/bin/cron/checkup index fbe8e0f..fcbfce4 100755 --- a/.local/bin/cron/checkup +++ b/.local/bin/cron/checkup @@ -2,7 +2,7 @@  # Syncs repositories and downloads updates, meant to be run as a cronjob. -notify-send "📦 Repository Sync" "Checking for package updates..." +# notify-send "📦 Repository Sync" "Checking for package updates..."  doas pacman -Syyuw --noconfirm || notify-send "Error downloading updates. @@ -12,6 +12,4 @@ pkill -RTMIN+8 "${STATUSBAR:-waybar}"  if pacman -Qu | rg -v "\[ignored\]"  then  	notify-send "🎁 Repository Sync" "Updates available. Click statusbar icon (📦) for update." -else -	notify-send "📦 Repository Sync"  "Sync complete. No new packages for update."  fi  |