I tried this myself and despite many attempts I can't seem to get the script working properly. Running this script in terminal: #!/bin/sh xdg-open /usr/share/applications/toggleBT_harmattan.desktop killall music-suiteGot me this: :no process killede - $ invoker ...toggleBT..in which the bluetooth toggle works fine but the music application isn't killed. Switching the lines in the script to this: #!/bin/sh killall music-suite xdg-open /usr/share/applications/toggleBT_harmattan.desktop Gets me: no default action for the given PARAMSAny advice? Script is in a folder called /home/user/MyDocs/Scripts
#!/bin/sh xdg-open /usr/share/applications/toggleBT_harmattan.desktop killall music-suite
:no process killede - $ invoker ...toggleBT..
#!/bin/sh killall music-suite xdg-open /usr/share/applications/toggleBT_harmattan.desktop
no default action for the given PARAMS
nano myscript.sh