dotfiles/bin/mymenu
2020-09-12 09:59:24 +02:00

17 lines
166 B
Bash
Executable File

#!/bin/bash
CHOICE=`wofi -i -d -W 400 -H 250 -p 'Choose' << EOF
Services
VPN
EOF`
case $CHOICE in
'Services')
mymenu-services
;;
'VPN')
mymenu-vpn
;;
esac