How can I add an icon to call my script into the taskbar?
How can I add an icon to call my script into the taskbar?
I can place the "Application Launch Bar" button into the taskbar without problem. However, it would allow me to launch a specific application available in the list only. I need a button to call my script. Is there an xml file somewhere I could edit?
Re: How can I add an icon to call my script into the taskbar?
Hi
You have to create a *.desktop-file. Here is an example:
Customize it and place it in "~/.local/share/applications/". Name it "<scriptname>.desktop".
maces
You have to create a *.desktop-file. Here is an example:
Code: Select all
[Desktop Entry]
Encoding=UTF-8
Name=<Name of your application>
Comment=<comment>
Exec=lxterminal -e <yourapplication>
Icon=<path to your icon>
Type=Application
maces