Wiktor Zykubek ab76262568 Migrate from GitLab to GitHub
- switch i3wm to bspwm
- lot of changes
2020-03-08 10:19:00 +01:00

10 lines
205 B
Bash
Executable File

#!/bin/sh
CHECK="$(printf "Yes\nNo\n" | dmenu -i -p 'Do you want to make packages update?')"
if [ -z "$CHECK" ]; then exit; fi
case "$CHECK" in
Yes) st -e bash -c "yay -Syu --noconfirm";;
*) exit
esac