I'm using gnome-shell with Ubuntu 11.10. At the left edge there is menu with icons. Where can I edit the command that is launched after clicking them? For example, there is gvim icon and I want it to start with -geometry flag. I assume it is in some config file, but where?

link|improve this question
feedback

1 Answer

To add startup arguments you have to modify the Exec parameter of the .desktop file. The gvim.desktop file is in

/usr/share/applications/gvim.desktop

Add the arguments you need to the line.

Exec=gvim -f %F

This will affect all users on your system. If you want a custom launcher file you can create a .desktop file in ~/.local/share/applications.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.