17 lines
227 B
Bash
Executable File
17 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# ignore hup signal
|
|
trap "" 1 15
|
|
|
|
cat <<EOF | xmenu | sh &
|
|
Applications
|
|
Web Browser firefox
|
|
Image editor gimp
|
|
Terminal (xterm) xterm
|
|
Terminal (urxvt) urxvt
|
|
Terminal (st) st
|
|
|
|
Shutdown poweroff
|
|
Reboot reboot
|
|
EOF
|