mpc
shrc
.directory
cconvert
cnc
colortest
fetch
i3lock-custom
mklatex
test-notifications
tmp
tubetop
tubetop2
xrdbupdate
8 lines
116 B
Bash
Executable File
8 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
if [ -x "$CNC_HOME/cnc" ]; then
|
|
exec "$CNC_HOME/cnc" "$@"
|
|
else
|
|
printf "cnc: not installed\n"
|
|
exit 1
|
|
fi
|