Edit updater script
Cocmetic changes, anyway this script will be rebuild in future.
This commit is contained in:
parent
6135f0c29e
commit
8d0d4e2f5a
@ -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
|
||||
|
||||
;~~~~~~~~~~~
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user