aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ak-sh')
-rwxr-xr-xbin/ak-sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/bin/ak-sh b/bin/ak-sh
index 730c83b..acdd0f5 100755
--- a/bin/ak-sh
+++ b/bin/ak-sh
@@ -29,17 +29,18 @@ fullprogrampath="$(realpath $0)"
PROGRAM=$(basename $0)
descriptionString="Arching Kaos Shell"
-source $AK_LIBDIR/_ak_log
-source $AK_LIBDIR/_ak_script
-source $AK_LIBDIR/_ak_sh
+source $AK_LIBDIR/_ak_lib_load
+_ak_lib_load _ak_log
+_ak_lib_load _ak_script
+_ak_lib_load _ak_sh
if [ ! -z $1 ]
then
case $1 in
-h | --help) _ak_usage; exit;;
-s | --shell) _ak_shell; exit;;
- * ) _ak_usage;;
+ * ) _ak_usage err;;
esac
else
- _ak_usage
+ _ak_usage err
fi