5

I switched from Gnome/Unity to LXDE on my netbook because it has only 1 GB RAM. Now the Kile window has no menu bar. How does one get it back?

This does not affect all KDE applications - for example, Kate does have a menu bar.

Prateek
  • 2,611

4 Answers4

13

In ~/.kde/share/config/kilerc, look for the section [KileMainWindow], and within that look for the line menubar=Disabled. Change Disabled to Enabled or delete this line.

Thanks to @fossfreedom for suggesting looking in ~/.kde/share/config/kilerc.

Prateek
  • 2,611
4

converted comment to answer

A similar issue was reported on ubuntuforums.

In this case it was reported against Kubuntu - so the observation that you have switched to LXDE perhaps is not the key issue here.

The resolution was to rename the file ~/.kde/share/config/kilerc.

This file will then be regenerated when you next start Kile.

This will result in your own customisation settings being lost but user-defined shortcuts are retained.

fossfreedom
  • 174,526
2

If you do not want to destroy your settings:

  • Open the file ~/.kde/share/config/kilerc with an editor.
  • Look for [KileMainWindow].
  • Change the setting MenuBar=Disabled to MenuBar=Enabled.
Eliah Kagan
  • 119,640
Martien
  • 21
0

The location of kilerc on my PC is $XDG_CONFIG_HOME/kilerc. As mentioned in the other answers, go to this file and change menubar=Disabled to menubar=Enabled.

abrac
  • 210