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.
 
 
 
 
 

21 line
477 B

  1. #!/bin/bash
  2. MENUOPTIONS=~/.menuoptions
  3. MENUSELECT=~/.menuselect
  4. HEIGHT=0
  5. WIDTH=0
  6. LINES=0
  7. if [ ! -f $MENUOPTIONS ]
  8. then
  9. echo 'termite Terminal' > $MENUOPTIONS
  10. echo 'audacious "Music Player"' >> $MENUOPTIONS
  11. echo 'firefox "Web Browser"' >> $MENUOPTIONS
  12. echo '"sudo reboot" Restart' >> $MENUOPTIONS
  13. echo '"sudo poweroff" Shutdown' >> $MENUOPTIONS
  14. fi
  15. cat $MENUOPTIONS | xargs dialog --menu EXECUTE $HEIGHT $WIDTH $LINES 2>$MENUSELECT && swaymsg exec "`cat $MENUSELECT`"