13 lines
372 B
Bash
Executable File
13 lines
372 B
Bash
Executable File
#!/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
|
|
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';;
|
|
*) exit
|
|
esac
|