this post was submitted on 17 Jan 2025
16 points (100.0% liked)

KDE

5949 readers
76 users here now

KDE is an international technology team creating user-friendly free and open source software for desktop and portable computing. KDE’s software runs on GNU/Linux, BSD and other operating systems, including Windows.

Plasma 6 Bugs

If you encounter a bug, proceed to https://bugs.kde.org/, check whether it has been reported.

If it hasn't, report it yourself.

PLEASE THINK CAREFULLY BEFORE POSTING HERE.

Developers do not look for reports on social media, so they will not see it and all it does is clutter up the feed.

founded 2 years ago
MODERATORS
 

@kde I've been using Global Menu for a while, but since it is less and less supported, I've finally removed the widget.

However, I did not get the local menu back! Now all my KDE apps have no menu at all.

I thought that restarting the session would fix it, but it did not help. Anybody has any hint on how to fix this?

you are viewing a single comment's thread
view the rest of the comments
[–] pretzel6666@c.im 1 points 1 month ago* (last edited 1 month ago) (1 children)

@carl @kde no I'm on a recently updated kde neon. But my config files have been transferred from one install to the other for many years.

What is maybe special, is that I remove two global menu widgets in one go, as I have two screens.

Anyways, sounds like it is time for a big grep exploration!

[–] pretzel6666@c.im 2 points 1 month ago (1 children)

@carl @kde Oh LOL, do I need to change all of them manually?

[130|18:08|paulite23|.config]$ find . -type f -name \*rc -exec grep -i menubar --color \{\} /dev/null \;

./dolphinrc:MenuBar=Disabled
./dragonplayerrc:MenuBar=Disabled
./kaddressbookrc:MenuBar=Disabled
./kdenliverc:MenuBar=Disabled
./kfontviewrc:MenuBar=Disabled
./khelpcenterrc:MenuBar=Disabled
./kinfocenterrc:MenuBar=Disabled
./kmail2rc:MenuBar=Disabled
./kmail2rc:MenuBar=Disabled
./kmenueditrc:MenuBar=Disabled
./kminesrc:MenuBar=Disabled
./kolourpaintrc:MenuBar=Disabled
./kolourpaintrc:MenuBar=Disabled
./komparerc:MenuBar=Disabled
./konquerorrc:MenuBar=Disabled
./konsolerc:MenuBar=Disabled
./korganizerrc:MenuBar=Disabled
./krdcrc:MenuBar=Disabled
./kritarc:MenuBar=Disabled
./ktnefrc:MenuBar=Disabled
./ktorrentrc:MenuBar=Disabled
./ktorrentrc:menubar_hidden=true
./kwriterc:ShowMenuBar=true
./kwriterc:MenuBar=Disabled
./kilerc:MenuBar=Disabled
./arkrc:MenuBar=Disabled
./arkrc:MenuBar=Disabled
./systemsettingsrc:MenuBar=Disabled
./gwenviewrc:MenuBar=Disabled
./katerc:MenuBar=Disabled
./okularrc:shouldShowMenuBarComingFromFullScreen=false
./okularrc:MenuBar=Disabled

[–] carl@kde.social 5 points 1 month ago (2 children)

@pretzel6666 @kde Just use sed ;)

find ~/.config -iname '*rc' -exec sed -i '/Menubar=/d' {} \;

This should work but you might want to execute the sed command on one file first before running it everywhere as I am on my phone and didn't test it 😅

[–] pretzel6666@c.im 1 points 1 month ago (1 children)

@carl @kde No worry, I had already done something similar, however but it does not seem to have worked… I'll try google some more.

[–] pretzel6666@c.im 2 points 1 month ago

@carl @kde It looks like I have to typer ctrl-shift-m in every single app I want the menu back! But at least it is working

[–] DmMacniel@feddit.org 1 points 1 month ago

That line of bash is so beautiful 😍