diff --git a/README.md b/README.md index f41940e..0946bf6 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ audio file and creates an xml file to listen to them as a podcast. ## Getting Started * Run install.sh under Debian based distribution. -* Run python core.py -h. To launch with GUI: python core.py -i from virtual environment. +* Run runGUI.sh , or python core/core.py -i from virtual environment. +* Run python core/core.py -h from terminal from virtual environment for more CLI options. ### Prerequisites diff --git a/install.sh b/install.sh old mode 100644 new mode 100755 index 0ae5b2d..6031218 --- a/install.sh +++ b/install.sh @@ -28,3 +28,12 @@ source venv/bin/activate # pip install pip install -r requirements.txt +# create runGUI.sh +rm runGUI.sh +touch runGUI.sh +echo "#!/bin/bash" > runGUI.sh +echo "" >> runGUI.sh +echo cd $(pwd) >> runGUI.sh +echo "./venv/bin/python3 ./core/core.py -i" >> runGUI.sh +chmod u+x runGUI.sh + diff --git a/runGUI.sh b/runGUI.sh deleted file mode 100755 index acac357..0000000 --- a/runGUI.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -./venv/bin/python3 ./core/core.py -i