As giphit mentioned, .desktop file make a menu entry for you, so you can launch something as simple

As giphit mentioned, .desktop file make a menu entry for you, so you can launch something as simple as launching your web browser.

Another way to do it is to either:
1) hardcore script by adding konsole -e before the actual commands you are running inside the script

2) make another script with following contents:
#!/bin/bash
exec konsole -e /path/to/script 
Was this page helpful?