From 17cb57c9275a5131182ddb7e034e59c03f022b38 Mon Sep 17 00:00:00 2001 From: John Mertz Date: Tue, 15 Oct 2024 16:23:44 -0600 Subject: [PATCH] Deprecated old pkg script --- waybar/waybar-fedora-silverblue.sh | 38 ------------------------------ 1 file changed, 38 deletions(-) delete mode 100755 waybar/waybar-fedora-silverblue.sh diff --git a/waybar/waybar-fedora-silverblue.sh b/waybar/waybar-fedora-silverblue.sh deleted file mode 100755 index 530e9de..0000000 --- a/waybar/waybar-fedora-silverblue.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -COUNT=0 -function count() { - RESULTS="`rpm-ostree upgrade --check 2> /dev/null | grep Diff: | sed 's/.*\([0-9][0-9]*\).*/\1/'`" - COUNT=0 - for i in $RESULTS; do - i=`echo $i | sed 's/;//'` - let COUNT=$COUNT+$i - done -} - -if [ "$1" == 'bar' ]; then - if [ ! -e ${HOME}/.local/state/ostree-upgradeable ]; then - count - echo $COUNT > /home/jpm/.local/state/ostree-upgradeable - else - COUNT=`cat ${HOME}/.local/state/ostree-upgradeable` - fi - if [ $COUNT -eq 0 ]; then - echo '{"text": "🗹", "tooltip": "Up-to-date", "class": "up-to-date"}' - else - echo '{"text": "⭳'$COUNT'", "tooltip": "'$COUNT' updates available (click to download)", "class": "updateable"}' - fi -elif [ "$SUDO_USER" != '' ]; then - echo "Don't run with sudo. Run normally, but with a sudoer user" -elif [ $UID -eq 0 ]; then - echo "Don't run as root. Run normally, but with a sudoer user" -elif [ "$1" == 'upgrade' ]; then - /usr/bin/uxterm -e "rpm-ostree upgrade" - count - echo $COUNT > /home/jpm/.local/state/ostree-upgradeable -elif [ "$1" == 'update' ]; then - count - echo $COUNT > /home/jpm/.local/state/ostree-upgradeable -else - echo "Missing argument: update, upgrade, bar" -fi