Edit updater script

Cocmetic changes, anyway this script will be rebuild in future.
This commit is contained in:
samedamci 2020-04-17 13:50:27 +02:00
parent c1fa5863a8
commit e35b32c884
2 changed files with 5 additions and 3 deletions

View File

@ -329,7 +329,7 @@ type = custom/script
exec = ~/.scripts/update-check
label =  %output%
click-left = ~/.scripts/updater &
click-right = checkupdates | dmenu -l 30
click-right = pacman -Qu | dmenu -l 30
interval = 60
;~~~~~~~~~~~

View File

@ -1,12 +1,14 @@
#!/bin/sh
CHECK="$(printf "Yes\nNo\n" | dmenu -i -p 'Do you want to make packages update?' -h 24)"
CHECK="$(printf "Yes\nNo\nShow packages" | dmenu -i -p 'Do you want to make packages update?' -h 24)"
if [ -z "$CHECK" ]; then exit; fi
case "$CHECK" in
Yes)
export PASS=$(printf | dmenu -P -p "Enter password: " -h 24)
if [ -z "$PASS" ]; then exit; fi
st -e sh -c 'bspc node -d '^10'; echo $PASS | sudo -S -v && clear; sudo pacman -Syu --noconfirm';;
st -e sh -c 'bspc node -d '^10'; echo $PASS | sudo -S -v && clear; sudo pacman -Su --noconfirm';;
"Show packages")
pacman -Qu | dmenu -l 50 ;;
*) exit
esac