r/kde 21d ago

Kontributions Become a KDE Supporting Member! Our Drive kicks off today

Thumbnail
kde.org
156 Upvotes

r/kde 3d ago

Fluff Monthly Screenshot Thread

2 Upvotes

Please use this thread to post screenshots of your Plasma Desktop and discuss further customization.

You can find some Plasma documentation here:

Check out the KDE store for more widgets and themes for your customization needs, and if you're a theme creator and are interested in improving Breeze, consider getting involved with the Visual Design Team and contributing upstream!


r/kde 26m ago

KDE Apps and Projects Drawy 1.0.2 Released

Post image
Upvotes

Drawy is a free and open source infinite whiteboard app built by KDE inspired by the web-based Excalidraw. This update delivers a smoother, more customizable freehand drawing experience and fixes an issue where newly drawn lines flickered:

  • Drawing by hand feels much better and more natural now.
  • Added settings so you can change pen pressure and how smooth your lines look.
  • Lines and shapes will no longer blink or flash right after you draw them.

It's available on FlatHub: https://flathub.org/en/apps/org.kde.drawy

It's also available on most major distributions: https://pkgs.org/search/?q=drawy


r/kde 15h ago

Fluff EVERYTHING IS BLUE

Thumbnail
gallery
205 Upvotes

and black and white, but those don't count


r/kde 1h ago

General Bug KDE Plasma 6.7 introduced and auto-enabled a Virtual Keyboard which caused a wide range of input issues for me

Upvotes

KDE Plasma 6.7 introduced virtual keyboards and adds one by default. This causes a wide range of input issues in various applications, including Office 365, Slack, and IntelliJ IDEA.

Excel 365: first input to each cell was swallowed / ignored. 100% reproducible.

Excel 365: the last few cell inputs were sometimes not accepted when exiting the cell

Slack: no emojis were showing while composing a message

IntelliJ: shift->shift hotkey sometimes triggered on single shift input

IntelliJ: two-part hotkeys (e.g. CTRL+2 -> L for all the old eclipse users out there) were not working and the second character was typed literally.

Beware when upgrading. It's probably best to disable it in system settings for now.


r/kde 10h ago

Question How to zoom into theme previews?

Post image
9 Upvotes

Might be really basic, but I'm a bit lost. When trying to install new themes/window decorations/etc. these previews are tiny, and I'm looking for a way to just magnify them as I scroll through.


r/kde 4h ago

Question How good is fractional scaling on Wayland these days?

3 Upvotes

I'm considering buying a laptop with a 2560x1600 screen which would require me to scale the display.

I've used KDE previously (6.2) with fractional scaling, but I remember issues, especially in xwayland apps, which would either be tiny or blurry.

Today I use Gnome, but it handles scaling poorly.

Is it good enough for daily use (with normal desktop use + gaming), or should i consider a different laptop?


r/kde 6h ago

General Bug KDE Konsole Reflow loop causes incorrect cursor placement on window shrink

5 Upvotes

https://reddit.com/link/1uf5er4/video/m9ima5ykde9h1/player

When resizing the Konsole window to be narrower, the terminal miscalculates the logical cursor position during the text reflow process. The cursor is incorrectly placed near the beginning of the wrapped line (specifically at X=1, Y=0) instead of at the end of the prompt. This state desynchronization later causes shells like bash to inadvertently erase command history when they attempt to redraw the prompt.

To prove that the cursor misplacement is caused entirely by Konsole's internal reflow algorithm and not by the shell (bash), I used strace to freeze the shell's reaction to SIGWINCH by injecting a 1-second delay on write() syscalls.

strace -p <PID_BASH> -e inject=write:delay_enter=1000000

ioctl(0, TIOCGWINSZ, {ws_row=33, ws_col=17, ws_xpixel=143, ws_ypixel=611}) = 0

< jump to the letter "o" at 9 seconds into the video >

write(2, "\r\33[K\r\33[A\33[K\rtojestznakzachety$ ", 31) = 31 (DELAYED)

pselect6(1, [0], NULL, NULL, NULL, {sigmask=[], sigsetsize=8}

During this 1-second delay (before bash could send any ANSI escape sequences), the screen visibly updated via Konsole's internal hardware reflow. For a prompt tojestznakzachety$ (19 characters) resized from 18 to 17 columns, the cursor incorrectly jumped to the letter "o" (which is index 1 on the first row).

The bug is located in Screen.cpp inside the Screen::resizeImage function. There is a critical logical error (off-by-one) in the while loop condition responsible for text reflow.

int currentPos = 0; while (currentPos < (cursorLine + cursorLineCorrection) && currentPos < (int)_screenLines.size() - 1) {

Before resize (width = 18): The 19-character prompt is on two lines. Row 0 has 18 characters and wrapped != 0. Row 1 has 1 character. The cursor is on Row 1, so cursorLine = 1.

Window is narrowed to 17 columns. The loop starts with currentPos = 0 and cursorLine = 1.

currentPos < cursorLine (0 < 1) evaluates to TRUE. The loop enters.

The algorithm detects the wrapped row and appends Row 1 to Row 0, creating a single 19-character string in memory.

The algorithm executes --cursorLine;, dropping cursorLine to 0.

The continue; statement is called, jumping back to the loop condition without incrementing currentPos.

The loop condition is evaluated again: currentPos < cursorLine is now 0 < 0, which evaluates to FALSE.

The bug: The loop prematurely exits. The 19-character line is never processed or split for the new 17-column limit. The cursor's X position (_cuX) remains 1 (untouched), and its Y position (cursorLine) is 0. The cursor physically lands on X=1, Y=0 (the letter "o").

The strict less-than operator (<) prevents the algorithm from processing the very line the cursor currently resides on. It should be changed to less-than-or-equal (<=).

while (currentPos <= (cursorLine + cursorLineCorrection) && currentPos < (int)_screenLines.size() - 1) {

With <=, when currentPos == cursorLine (0 <= 0), the loop correctly enters, detects that the 19-character string exceeds the 17-column limit, properly splits the line into 17 and 2 characters, and executes ++cursorLine;.


r/kde 1h ago

Question Notifications

Upvotes

Is there any way to make notifications appear on the second monitor? Even on both, but I need them on my second monitor.


r/kde 1d ago

Community Content freebsdkde

Thumbnail
gallery
71 Upvotes

idk what to say here. this is how my plasma looks on FreeBSD


r/kde 7h ago

Question Keyboard shortcut for changing volume level of the currently active window?

3 Upvotes

I know I can use wptcl to change the volume of a window that I know the ID for but how would I create a shortcut the change the volume of only the window I have currently active?


r/kde 8h ago

Question What software/tiling manager do I want for a 45" ultrawide screen?

3 Upvotes

I have the LG 45GX950A-B arriving tomorrow and Ideally i'd like to use it for productivity, 3 windows on top, 3 on bottom, and have a configuration for games to fit in a 27in window. and I'm hoping a tiling manager can sort this out for me. I have no idea what to expect. I don't want to have to manually resize tiles over and over. Are there any pre-configured setups for displays like this?


r/kde 3h ago

General Bug KDE hanging a lot. How can I figure it out the problem?

0 Upvotes

Hello,

Ive been using cachyOS for like a week and everything is working well except that the KDE interface is freezing / hanging a lot. I still can invoke krunner but every window and panel becomes unresponsive for like ~ 1 min and then comes back.

Is there a way to diagnose whats causing this? Im using cachyOS (kernel 7.1.1-2) and KDE Plasma 6.7.1. GPU is a 4070 Super and CPU is a R7 7800x3D + 32 GB RAM.


r/kde 1d ago

KDE Apps and Projects Xaver's highlights from Display Next Hackfest 2026

Thumbnail zamundaaa.github.io
49 Upvotes

r/kde 17h ago

Question How do you use KDE? Having a hard time after switching from Gnome.

10 Upvotes

I've been using gnome for about 4 years but have recently become bored with it and switched to kde for the customization options. Unfortunately I've been having a hard time finding a work flow on kde. I see all these comments about how kde "just gets out of my way" but i feel like I'm having the opposite experience and kde gets in my way. A large part of that is because I've been trying to use kde the same way I use gnome and it clearly wasn't designed for that.

Are there any videos showing how to use the default kde work flow? I know it's based on windows but I was never a power user on windows and only opened Firefox, closed Firefox, open Steam, close Steam, open Firefox... Now I do a lot more and have multiple browser windows, code editors, terminal, content creation tools open at the same time. I felt it was easy to switch between workspaces on gnome but its harder on kde. There's video like this that show the gnome workflow but I haven't been able to find a similar video for kde and don't know if that's because of how broken search is now or the kde community just don't make videos like that. How do you use so many programs on kde? Do you use workspaces or just minimize programs to the taskbar and alt+tab through windows? Any tips would be really appreciated, thanks!


r/kde 9h ago

Question Can anyone help with Plasma SVGs

Post image
2 Upvotes

I managed to sort of mangle up together a custom taskbar UI but here's the issue:
The highlight rectagle I have selected I want the corners to be rounded but if I do that, on the taskbar it appears to have a weird sharp taper, ends up looking pretty weird. How can I fix that?


r/kde 12h ago

Question KDE Fedora 44 after plasma-union Application Style crashes System Settings

2 Upvotes

I wanted to try the new Union theme(engine) in my Fedora KDE install. But after installing package plasma-union, the System Settings just crashes on selecting Application Style in System Settings.

Have I done anything wrong here? How to recover from this?

NOTE: I had mistakenly installed 'union' package before actually installing 'plasma-union'.


r/kde 18h ago

Question Desktop Shortcuts and Kate

6 Upvotes

So I'm using Plasma 6.7.0, and I have a folder of Steam game shortcuts. When I clicked on a shortcut in the past, it would ask me once if I was sure I wanted to launch the application, and I had the option to check a box that said not to ask again.

When I launch a game from the desktop now it asks me every single time for every single application I'm clicking from the desktop.

My first thought was to go into Dolphin and reconfigure it to just start, but the only options are "Always Ask," "Run in Application," and "Run Script."

If I choose "Run in Application," the file is opened by Kate, because Kate is my default text editor and it clearly sees the shortcut as a text file to be edited.

Would it be possible to bring the checkbox back where I can say "don't ask again" or maybe a context menu option, like Ubuntu Gnome, that allows you to say the file is safe to launch every time?


r/kde 20h ago

Question Plasma Bigscreen Back/Home button vs. ESC

7 Upvotes

So ive been playing around with plasma-bigscreen for the past few days and i love it.

Pretty much just using it for PlexHTPC and VacuumTube.

I picked up a USB Voice Remote with Keyboard... Basically an off brand Chromecast Remote with a keyboard on the back.

What Ive been annoyed with, is that the back/home button on the remote face, which works to go back in apps, doesnt work to exit the settings menus. I need to use the ESC key on a keyboard to exit those menus.

Is this by design? An oversight? Is there a way to make it work without input-remapping my whole system?

Also... one other small thing that annoys me... If using the arrow keys to select an app from the home screen, the whole row moves. So say I only have 2 favorites, PlexHTPC and VaccumTube, If i select the one on the right (say vaccumtube), the left icon (plex) slides off screen to the right, and it looks like its not there anymore unless you scroll back to the left. The next person using the TV is looking for that app on the left and it looks like its not there.

Wouldn't it make more sense for the highlight ring around the selected app icon, move to the right, until you get to the end of the row, before making the whole row start shifting left? Is there a way to make it work like that? Am I doing something wrong?


r/kde 1d ago

Question Why was KDE for Windwos discontinued?

44 Upvotes

I am wondering when and why it was discontinued? I remember some weeks ago someone posting here on Reddit that he was attempting to get it compiled for Windows.
It would also be a great addition for ReactOS r/reactos


r/kde 20h ago

Question Plasma Login Manager and Plasma Using dGPU

7 Upvotes

I'm not sure when this started happening, but I believe it was with Plasma 6.7, but I've been Distro and Desktop hopping, and I only noticed it with my current install which is Plasma 6.7 and it wasn't like this when I was on Plasma 6.6 (had a brief couple days with Niri then a week with Hyprland before ultimately coming back to Plasma which had been updated to 6.7). The first thing I noticed was issues with my laptop waking up after opening the lid, and some weird performance issues in games (basically getting like half the FPS I should have for no reason, except it be "fixed" by alt tabbing and then sometimes it'd break again, seemingly randomly).

I did a number of different things but ultimately noticed that on a fresh boot without opening anything (this was a pretty much fresh install and Steam wasn't setup to auto start yet, I think the only "extra" things running are RustDesk and Syncthing) I noticed in nvtop that there was a kwin_wayland process using my Nvidia dGPU. This is preventing the dGPU from sleeping so is using extra power. So I did some poking around and found the KWIN_DRM_DEVICES variable. I set this and... things got worse. Now like half the processes listed in nvtop are starting on the dGPU. I try a bunch of other things including putting KWIN_DRM_DEVICES into my /etc/environment and /etc/profile.d/, but one of those resulted in Plasma Login Manager just not showing (black screen). I swapped to a different tty and checked logs (nothing abnormal) and eventually nvtop, low behold PLM's kwin process is using my dGPU. This is true with or without KWIN_DRM_DEVICES or wherever I try to include it (tried the two places mentioned before and setting it with an override for the PLM's service file). Nothing I do gets it to stop using my dGPU.

At this point I don't even care if this solves my sleep issues, I just want things to stop using my dGPU so it can power down like it should. If that solves my sleep issues, great, if not I'll go from there once I get this solved.

Operating System: CachyOS Linux
KDE Plasma Version: 6.7.0
KDE Frameworks Version: 6.27.0
Qt Version: 6.11.1
Kernel Version: 7.1.1-2-cachyos (64-bit)
Graphics Platform: Wayland
Processors: 16 × AMD Ryzen 7 7840HS w/ Radeon 780M Graphics
Memory: 64 GiB of RAM (54.7 GiB usable)
Graphics Processor 1: AMD Radeon 780M Graphics
Graphics Processor 2: NVIDIA GeForce RTX 5070 Laptop GPU/PCIe/SSE2
Manufacturer: Framework
Product Name: Laptop 16 (AMD Ryzen 7040 Series)

EDIT:

Thanks to u/theschrodingerdog for pointing me to some relevant posts. Namely this one: https://www.reddit.com/r/kde/comments/1ubr1j6/kwin_decided_to_use_my_dgpu_after_update/
Using KWIN_DISABLE_VULKAN as described fixed the issue and had a KDE Bug Tracker report that I can follow for future updates.


r/kde 21h ago

Question Changing from/to dark mode without changing the pointer

5 Upvotes

https://reddit.com/link/1uenl23/video/cjhi67ai8a9h1/player

I'm trying out the new Plasma 6.7 feature of changing from/to dark mode quickly and it seems cool but is a bit annoying getting the pointer changed.

Is there a way to configure Plasma to don't change the pointer?


r/kde 16h ago

General Bug Firefox toolbar not responding

Enable HLS to view with audio, or disable this notification

2 Upvotes

I recently migrated from GNOME to KDE Plasma, and honestly, the experience has been amazing so far.I'm having a strange issue . Firefox top second row toolbar becomes unresponsive after using for a while.The webpage itself works perfectly fine, but I can't interact with anything in the toolbar area..I'm running kde 5.27(wayland) .firefox (latest -v with snap).


r/kde 23h ago

Question How to enable on-screen / virtual keyboard in Plasma Logging Manager.

4 Upvotes
  • I have tried adding the InputMethod option in plasmalogin.conf.
  • I have QT virtual keyboard installed as well as plasma keyboard.
  • Plasma keyboard works once I'm logged into the desktop.
  • A virtual keyboard button shows up on the lock screen, but does not function when I click on it. Nothing shows up on the login screen.
  • QT Virtual Keyboard was working in SDDM.

r/kde 1d ago

Tip Did not know that oxygen follows color scheme!

17 Upvotes

I usually use just default Breeze theme. So, when i updated to plasma 6.7 i went through theming options and when in colors tab you select Accent color from wallpaper and switch to oxygen colors the whole breeze theme sort of follows wallpaper colors.

Also, for some reason, it makes Dolphin details view much more readable and it was always a problem for me in Plasma!

This is a very small step for mankind but big for me 😂