diff options
| author | awy <awy@awy.one> | 2025-11-01 15:31:34 +0300 |
|---|---|---|
| committer | awy <awy@awy.one> | 2025-11-01 15:31:34 +0300 |
| commit | 326f78eb8b27e618d833420a7cffcf17c7aa961d (patch) | |
| tree | 43c94ec68d9c2f0eceb5189490997fe2282d79ff /.local | |
| parent | d01fe73fa03ae885c150fcbe4b3f1a93cd6ce802 (diff) | |
| download | hyprdots-326f78eb8b27e618d833420a7cffcf17c7aa961d.tar.gz | |
just less notification spam
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 |