2020-05-08 20:35:40 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-05-11 17:07:33 +02:00
|
|
|
action="$(printf " Update\n Show packages" | \
|
|
|
|
rofi -dmenu -i -p 'Updater' -l 2 -width 200)"
|
|
|
|
[ ! "$action" ] && exit
|
|
|
|
|
|
|
|
case "$action" in
|
|
|
|
" Update")
|
|
|
|
export PASS="$(printf | dmenu -P -p "Enter password: " -h 24)"
|
|
|
|
[ ! "$PASS" ] && exit
|
|
|
|
st -e sh -c "echo $PASS | sudo -S -v && clear; sudo pacman -Su --noconfirm"
|
|
|
|
;;
|
|
|
|
|
|
|
|
" Show packages")
|
|
|
|
packages() { pacman -Qu; }
|
|
|
|
if [ "$(packages)" -gt 0 ]; then
|
|
|
|
pacman -Qu | dmenu -l 50
|
|
|
|
else notify-send "Nothing to update!"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
2020-05-08 20:35:40 +02:00
|
|
|
*) exit
|
|
|
|
esac
|