diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-03-27 03:45:56 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-03-27 03:45:56 +0200 |
commit | abdfe0a5c2a86f19aafe12ae70663ddcf83a6e39 (patch) | |
tree | dce7bee8b783bfd12bdd5e691e1745ca4d0c12da /bin/ak-mixtapes | |
parent | 5c08911132823735801aa70a4e2a23bc3f1c859a (diff) | |
download | arching-kaos-tools-abdfe0a5c2a86f19aafe12ae70663ddcf83a6e39.tar.gz arching-kaos-tools-abdfe0a5c2a86f19aafe12ae70663ddcf83a6e39.tar.bz2 arching-kaos-tools-abdfe0a5c2a86f19aafe12ae70663ddcf83a6e39.zip |
Applying new architecture with lib system
Diffstat (limited to 'bin/ak-mixtapes')
-rwxr-xr-x | bin/ak-mixtapes | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/bin/ak-mixtapes b/bin/ak-mixtapes index bb030b2..2004ccb 100755 --- a/bin/ak-mixtapes +++ b/bin/ak-mixtapes @@ -1,10 +1,18 @@ #!/bin/bash # The following creates a mixtape data message # We can extend it by calling the ak-zblock-pack.sh mixtape/add data ## ORIGINAL LINE +PROGRAM="$(basename $0)" +descriptionString="AK mixtape block creator" +source $AK_LIBDIR/_ak_logit +source $AK_LIBDIR/_ak_script_description _ak_modules_mixtapes_usage(){ _ak_modules_mixtapes_title - echo "$0 - artist title file" + echo "Usage: $0 - artist title file" +} + +_ak_modules_mixtapes_title(){ + description } _ak_modules_mixtapes_specs(){ @@ -43,12 +51,6 @@ EOF } -_ak_modules_mixtapes_title(){ - echo "AK mixtape block creator" - echo "========================" -} - - if [ ! -z $3 ]; then PWD="$(pwd)" |