views:

31

answers:

1

I want create a new launcher in the Application -> Game menu with bash shell. How can I do that ?

A: 

On Ubuntu there's a script for panel manipulation /usr/lib/gnome-panel/gnome-panel-add --launcher=yourApp.desktop
Example for yourApp.desktop

[Desktop Entry]
Encoding=UTF-8
Type=Application
Exec=vim
Terminal=true
Name[en_GB]=Vim

Aboelnour