1
0
Fork 0
dotfiles/bin/mymenu

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