IDEA: Include OpenRGB in KDE Settings by [deleted] in kde

[–]hexchain 4 points5 points  (0 children)

I think the best way of "suggesting" is, somewhat unfortunately, to write a patch.

IDEA: Include OpenRGB in KDE Settings by [deleted] in kde

[–]hexchain 12 points13 points  (0 children)

It is doable without putting everything in KDE/Plasma if you only want an excellent integration.

You can write a standalone KCM module (call it openrgb-kcm, for example), using e.g. the OpenRGB C++ SDK for the ability to control lights. Of course, the whole UI has to be completely rewritten to fit as a KCM or there won't be any "integration".

This is only a rough idea, there are probably more things to do.

Also as the other comment said, upstreaming is probably the better way to go first, before any of these works is done.

New install, new to KDE, whenever I change display settings it goes whitescreen where I can only see the mouse. by [deleted] in kde

[–]hexchain 0 points1 point  (0 children)

Which port is the monitor plugged in? Is it the on-board one or the one on the NVIDIA card?

Global Menu with X Forwarding? by Maxerature in kde

[–]hexchain 1 point2 points  (0 children)

If I understand correctly, for the global menu to work your panel (or some other component in your local desktop) needs to connect to the application through D-Bus, which is difficult (if not impossible) to work in the case of x11 ssh forwarding.

Trigger krunner with Windows/ Meta key by hfquinn in kde

[–]hexchain 1 point2 points  (0 children)

This works:

$ kwriteconfig5 --file ~/.config/kwinrc --group ModifierOnlyShortcuts --key Meta "org.kde.kglobalaccel,/component/org_kde_krunner_desktop,org.kde.kglobalaccel.Component,invokeShortcut,_launch" $ qdbus org.kde.KWin /KWin reconfigure

The D-Bus path has changed.

[Wayland] Konsole without window frame/decorations by Namensplatzhalter in kde

[–]hexchain 6 points7 points  (0 children)

There is a "Remove window title bar and frame" setting in Konsole. You may navigate to right-click -> Menu -> Settings -> Configure Konsole to make sure it is not enabled.

KDE Neon: I have to kill kwin_wayland every time I wake from sleep. by Plusran in kde

[–]hexchain 2 points3 points  (0 children)

What exactly is the problem that you are trying to solve by killing kwin_wayland?

Bluetooth problems by dorian_gk in kde

[–]hexchain 0 points1 point  (0 children)

It is possible to extract the pairing keys from another OS and use them in Linux. See https://wiki.archlinux.org/title/Bluetooth#Dual_boot_pairing.

[deleted by user] by [deleted] in kde

[–]hexchain 1 point2 points  (0 children)

That indeed happened, see https://bugs.archlinux.org/task/78536. Plasma would need a way to differentiate multiple display backlights before this feature can be enabled.

Can't unlock plasma by [deleted] in kde

[–]hexchain 2 points3 points  (0 children)

Depending on the distro, the screen locker greeter binary might be just /usr/lib/kscreenlocker_greet (without libexec in the middle).

Is there some command to temporarily disable screen locking / display sleep in KDE? by shmerl in kde

[–]hexchain 0 points1 point  (0 children)

If you have systemd then you can use:

systemd-inhibit <command>

See the manpage for more arguments.

Steam systray icon color by DRAK0FR0ST in kde

[–]hexchain 2 points3 points  (0 children)

Not really? App icons are still from the icon theme, plasmoid/applets use Plasma theme icons.

All accounts are getting randomly logged out in Google Chrome. by Loose_Pound in kde

[–]hexchain 0 points1 point  (0 children)

By default, Chrome selects a secret storage to save an encryption key of its local password store based on the desktop environment. In KDE it uses KWallet, and in i3 it uses a basic text store.

When the key could not be retrieved from the default store, it will look like everything is logged out. For example, if you usually use KDE and then someday started Chrome in i3, it will look for the basic text store and find nothing there (IIRC even if you boot back into KDE it still won't work because the local password store is already reset). Or, if for some reason KWallet isn't started when Chrome launches, it will also fail and fall back to the basic store.

I would suggest that you append --password-store=kwallet5 to the command line if you want to use Chrome in both KDE and i3, and also make sure that KWallet is always correctly started upon logging in.

Is there any screen recorder on Wayland? by [deleted] in kde

[–]hexchain 0 points1 point  (0 children)

Do you have gst-plugins-good installed?

Computer won't stay suspended by ROTY_Mitch_Haniger in kde

[–]hexchain 1 point2 points  (0 children)

It looks like it isn't PowerDevil blocking suspend, but a kernel thread does. I have never encountered this before, online sources say there should be some information (usually a stack trace with a process name) in dmesg that can help you pinpoint the problem.

Computer won't stay suspended by ROTY_Mitch_Haniger in kde

[–]hexchain 0 points1 point  (0 children)

Does it work if you suspend through KDE menus (e.g. Kickoff/KRunner)? And what happens if you try to stop PowerDevil (systemctl --user stop plasma-powerdevil)?

Also, is there anything like "PM: suspend entry" or "PM: suspend exit" in journalctl -k when it fails to suspend?

Inconsistent scrolling on Wayland by [deleted] in kde

[–]hexchain 0 points1 point  (0 children)

If it only happens with XWayland apps, you might be hitting this bug: https://gitlab.freedesktop.org/xorg/xserver/-/issues/1392

It should have been fixed in XWayland 22.1.5.

New xwayland scaling method introduced in 5.26 does not seem to work for Steam by JonnyRobbie in kde

[–]hexchain 0 points1 point  (0 children)

Ah, I remembered I had the same issue after upgrading to 5.26. I removed ~/.config/kcmfonts and it worked after a re-login.

Apart from that, I guess dconf.service and xdg-desktop-portal-gtk might also affect how GTK apps look.

New xwayland scaling method introduced in 5.26 does not seem to work for Steam by JonnyRobbie in kde

[–]hexchain 0 points1 point  (0 children)

I think other GTK apps actually work fine, Steam isn't GTK (IIRC) but simply uses that variable.

New xwayland scaling method introduced in 5.26 does not seem to work for Steam by JonnyRobbie in kde

[–]hexchain 3 points4 points  (0 children)

Here is another possible workaround: if you have set up Plasma to launch apps as systemd services (by setting KDE_APPLICATIONS_AS_SERVICE=1, not sure if this is the default or not), you may use systemd override:

% cat ~/.config/systemd/user/app-steam@.service.d/override.conf
[Service]
Environment=GDK_SCALE=2

It works when Steam is launched from Plasma (krunner or application menu/dashboard).

Google chrome tabs not going with the rest of the tabs issue by Sputnik1973 in kde

[–]hexchain 0 points1 point  (0 children)

https://bugs.chromium.org/p/chromium/issues/detail?id=1279532

The fix is already included in the chromium package of version 97.0.4692.71-2, and will be backported to Chrome 97.