
Signed-off-by: Aoi K <koizumi.aoi@kyoko-project.wer.ee> git-svn-id: file:///srv/svn/repo/kanako/trunk@9 62e5d677-aa6e-8c4a-b8cb-b9416171cb8e
15 lines
467 B
Bash
Executable File
15 lines
467 B
Bash
Executable File
#!/bin/sh -e
|
|
readonly conf_dir="${conf_dir:-$HOME/.config/kanako}"
|
|
readonly store_dir="${store_dir:-$HOME/.kanako-store}"
|
|
|
|
if test -f "${conf_dir}"/kanakomenu.conf; then
|
|
. "${conf_dir}"/kanakomenu.conf
|
|
else
|
|
echo "Configuration file has not been found!"
|
|
echo "Copy kanakomenu.conf from the examples directory,"
|
|
echo "and edit accordingly"
|
|
exit 1
|
|
fi
|
|
|
|
find . -name '*.enc' | sort | sed 's,^\./,,;s,\.enc$,,' | ${menu_prog} | xargs $(which kanako) -c
|