From ccb081f4f40f71e5db09be082e69af9e25e84e41 Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Fri, 10 May 2024 19:49:57 +0100 Subject: Updates for using eww as the bar for sway --- .config/eww/scripts/arch-updates.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to '.config/eww/scripts/arch-updates.sh') diff --git a/.config/eww/scripts/arch-updates.sh b/.config/eww/scripts/arch-updates.sh index 62bfe4a..e3da71f 100755 --- a/.config/eww/scripts/arch-updates.sh +++ b/.config/eww/scripts/arch-updates.sh @@ -1,10 +1,9 @@ #!/bin/bash function CheckUpdates() { -updates="$(checkupdates;paru -Qum)" -arch="$(checkupdates | wc -l)" -aur="$(paru -Qum | wc -l)" -number=$((arch+aur)) +xbps-install -Mun 1> /tmp/void-updates +updates="$(cat /tmp/void-updates | awk '{ print $1 }')" +number=$(cat /tmp/void-updates | wc -l) if [ "$number" -gt 0 ]; then text=" $number" @@ -21,7 +20,7 @@ function RefreshUpdates() { } function Update() { - foot 'paru' + foot bash -c 'sudo xbps-install -Suv' RefreshUpdates } -- cgit v1.2.3