How Can I Make Gnome Menu Run Faster ??

Asked by taurus

1. Create a file named .gtkrc-2.0 in your home directory

cd
touch .gtkrc-2.0
echo "gtk-menu-popup-delay = 0"| tee -a .gtkrc-2.0

2. Logout and login again

I have tested with a value gtk-menu-popop-delay = 2000 before to try gtk-menu-popop-delay = 0 to see what is different in effect.

After I do this, the menu runs alot faster. But, when I turn off then on my computer, the menu slowly runs like it did before. How do I make this permanent?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
taurus
Solved:
Last query:
Last reply:
Revision history for this message
Luky Winarto (luckyborneo) said :
#1

Hi taurus, try this:
$ pwd
/home/your_username/
$ touch .gtrc-2.0
$ echo "gtk-menu-popup-delay = 0" | tee -a .gtrc-2.0

Seems you have to remove "k" from your configuration before. Good luck...

Revision history for this message
taurus (taurusxz) said :
#2

luky, thanks for the tip. i already found the solution. thanks anyway.