Hi all,
I am trying to add a python script as an option within KUAL.
I have created what I understand are the folder structure and files needed.
e.g. extensions/clock and extensions/clock/bin
In /clock are the two files menu.json and config.xml
In /bin are clock.sh and all the python programs
config.xml contents:
In /bin/clock.sh:
Clock does show up as an option within KUAL, but fails to run, and the following error message is found in the KUAL log:
I have tried the full path to the file and with/without double quotes.
Any ideas?
Thanks for the assistance!
I am trying to add a python script as an option within KUAL.
I have created what I understand are the folder structure and files needed.
e.g. extensions/clock and extensions/clock/bin
In /clock are the two files menu.json and config.xml
In /bin are clock.sh and all the python programs
config.xml contents:
Code:
{
"items": [
{"name": "Clock", "priority": 1, "action": "bin/clock.sh"}
]
}
Code:
#!/bin/sh
. /mnt/us/python/bin/python2.7
/mnt/us/extensions/clock/c2.py
Quote:
/tmp/klauncher_background-6670879356155924107.sh: line 2: bin/clock.sh: not found |
Any ideas?
Thanks for the assistance!