added user config folders and launcher

This commit is contained in:
2023-09-17 20:46:24 -05:00
parent a7c8e630fa
commit 109877d3b0
4 changed files with 90 additions and 0 deletions

17
user_config/bin/shellmen Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# . CONFIG.sh
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
# set -o errunset ## To exit if a variable is referenced but not set
function main() {
call_path=`pwd`
path=""
cd "/opt/"
python /opt/shellmen.zip "$@"
}
main "$@";