22 lines
348 B
Bash
Executable File
22 lines
348 B
Bash
Executable File
#!/bin/sh
|
|
|
|
get_catgirl() {
|
|
cd ~/.config/catgirl && ls * | xargs -n1 \
|
|
| while read line
|
|
do
|
|
print "\t$line\ttexec \"catgirl $line\""
|
|
done
|
|
}
|
|
IRC="$(get_catgirl)"
|
|
|
|
xmenu -i <<EOF | sh &
|
|
IRC
|
|
$IRC
|
|
Applications
|
|
IMG:./web.png Web Browser firefox
|
|
IMG:./gimp.png Image editor gimp
|
|
|
|
Terminal (xterm) xterm
|
|
Terminal (st) sterm
|
|
EOF
|