You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
329 B

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