15 lines
203 B
Bash
15 lines
203 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cat <<EOF | ./xmenu | xargs sh -c
|
||
|
Applications
|
||
|
Web Browser firefox
|
||
|
Image editor gimp
|
||
|
Terminal (xterm) xterm
|
||
|
Terminal (urxvt) urxvt
|
||
|
Terminal (st) st
|
||
|
|
||
|
Shutdown poweroff
|
||
|
Reboot reboot
|
||
|
EOF
|
||
|
|