It's a rather simple problem, but I can't find the solution:
The menu bar in Kate (File, Edit, ...) has disappeared, and I tried looking up in the katerc file. How can I restore it?
It's a rather simple problem, but I can't find the solution:
The menu bar in Kate (File, Edit, ...) has disappeared, and I tried looking up in the katerc file. How can I restore it?
Came across this same bug this week. Unfortunately I had [Ctrl] + [M] mapped to something else. My solution was to find the file .katerc (in ~/.config on my Kubuntu machine), and invoked (courtesy of http://askubuntu.com/a/1274762/1002900)
find ./ -type f -exec sed -i 's/MenuBar=Disabled/MenuBar=Enabled/g' {} \;
find ./ -type f -exec sed -i 's/Show Menu Bar=false/Show Menu Bar=true/g' {} \;
to replace
MenuBar=Disabled and Show Menu Bar=false
with
MenuBar=Enabled and Show Menu Bar=true
I closed all my open kate windows, restarted, and my menu bar was back.
Three things are required to get your menus back under the title bar.
cd into your .config folder and execute:
find ./ -type f -exec sed -i 's/MenuBar=Disabled/MenuBar=Enabled/g' {} \;
In KDE settings > Window management > Menu tab > remove burger applications menu from title bar in both active and inactive windows
In KDE settings > Startup > Services > disable the menu daemon
Plus if you want your top menus in kate, hit ctrl+m twice.
I solved the problem by:
katerc with find * | grep katerc, and deleted itsudo apt purge katesudo apt install kate