13 lines
364 B
Plaintext
Raw Normal View History

#!/bin/sh
CHECK="$(printf "Yes\nNo\n" | dmenu -i -p 'Do you want to make packages update?' -h 24)"
if [ -z "$CHECK" ]; then exit; fi
case "$CHECK" in
2020-03-17 11:09:32 +01:00
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; yay -Syu --noconfirm';;
*) exit
esac