hyprdots

my dotfiles
git clone https://git.awy.one/hyprdots.git
Log | Files | Refs | README | LICENSE

checkup (770B)


      1 #!/bin/sh
      2 
      3 # Syncs repositories and downloads updates, meant to be run as a cronjob.
      4 
      5 pid=$(pgrep -x Hyprland)
      6 var="DBUS_SESSION_BUS_ADDRESS"
      7 export DBUS_SESSION_BUS_ADDRESS=$(grep -E -z "$var" "/proc/$pid/environ" | sed 's/DBUS_SESSION_BUS_ADDRESS=//')
      8 
      9 notify-send "📦 Repository Sync" "Checking for package updates..."
     10 
     11 sudo pacman -Syyuw --noconfirm || notify-send "Error downloading updates.
     12 
     13 Check your internet connection, if pacman is already running, or run update manually to see errors."
     14 pkill -RTMIN+8 "${STATUSBAR:-waybar}"
     15 
     16 if pacman -Qu | grep -v "\[ignored\]"
     17 then
     18 	notify-send "🎁 Repository Sync" "Updates available. Click statusbar icon (📦) for update."
     19 else
     20 	notify-send "📦 Repository Sync"  "Sync complete. No new packages for update."
     21 fi