1
0
mirror of https://github.com/Dejvino/pinephone-sway-poc.git synced 2024-09-21 06:33:37 +00:00
pinephone-sway-poc/usr/local/bin/swayphone_menuselect

15 lines
329 B
Plaintext
Raw Normal View History

#!/bin/bash
MENUOPTIONS=~/.menuoptions
MENUSELECT=~/.menuselect
if [ ! -f $MENUOPTIONS ]
then
echo 'termite Terminal' > $MENUOPTIONS
echo 'audacious Music_Player' >> $MENUOPTIONS
echo 'firefox Web_Browser' >> $MENUOPTIONS
fi
dialog --menu EXECUTE 15 40 6 `cat $MENUOPTIONS` 2>$MENUSELECT && swaymsg exec `cat $MENUSELECT`