Last change
on this file since 24 was 20, checked in by yakumo.izuru, 21 months ago |
Release v2
Signed-off-by: Izuru Yakumo <yakumo.izuru@…>
|
File size:
486 bytes
|
Rev | Line | |
---|
[20] | 1 | #!/bin/sh -e
|
---|
| 2 | # $TheSupernovaDuo: kanako,v 1.9 2023/5/18 21:9:33 yakumo_izuru Exp $
|
---|
| 3 | readonly kanako_conf_dir="${kanako_conf_dir:-$HOME/.config/kanako}"
|
---|
| 4 | readonly kanako_store_dir="${kanako_store_dir:-$HOME/.kanako-store}"
|
---|
| 5 |
|
---|
| 6 | if test -f "${kanako_conf_dir}"/kanako.conf; then
|
---|
| 7 | . "${kanako_conf_dir}"/kanako.conf
|
---|
| 8 | else
|
---|
| 9 | echo "Configuration file has not been found!"
|
---|
| 10 | exit 1
|
---|
| 11 | fi
|
---|
| 12 |
|
---|
| 13 | find . -name '*.enc' | sort | sed 's,^\./,,;s,\.enc$,,' | "${kanako_menu_cmd}" | xargs $(which kanako) -c
|
---|
Note:
See
TracBrowser
for help on using the repository browser.