


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.
-
KDE & Plasma users @lemmy.ml Hemingways_Shotgun @lemmy.ca Low Battery on Wireless Mouse triggers laptop Critical warning shutdown.
First few times I didn't put two and two together because I'm kind of an idiot. I started believing that something was wrong with my laptop battery when it would give me a critical battery shutdown notice while still above 80 percent.
Finally it dawned on me that it wasn't my laptop reaching critical battery, it was my wireless mouse triggering the shutdown notice.
I'm going to go ahead and presume that that's not supposed to be happening, but does anyone know what settings I would go into the change that?
I looked to see if there was options for different devices in the main battery UI, but couldn't find any.
-
KDE & Plasma users @lemmy.ml TheTwelveYearOld @lemmy.world I'm curious, which settings app layout do you prefer?
The image on the right is how the settings app look on macOS 12. On macOS 13 (2022) it was changed to look more to the one on the left, with all the sections selectable in a sidebar and a smaller window. Many users have complained about it, saying that it sacrificed function for form and is part of making macOS more like iOS by mindlessly copying phone UIs onto computers which it isn't meant for. I think its alright, not terrible. And it's the norm with settings apps looking like that in Windows, KDE, Gnome, and some other DEs.
-
KDE & Plasma users @lemmy.ml Jure Repinc @lemmy.ml Kubuntu Linux 25.04 (Plucky Puffin) released
cross-posted from: https://lemmy.ml/post/28752270
The Kubuntu Team is happy to announce that Kubuntu 25.04 has been released.
Codenamed “Plucky Puffin”, Kubuntu 25.04 continues our tradition of giving you Friendly Computing by integrating the latest and greatest open source technologies into a high-quality, easy-to-use Linux distribution.
The release features the latest KDE Plasma 6.3 desktop, KDE Gear 24.12.3, kernel 6.14, and many other updated applications and libraries.
-
KDE & Plasma users @lemmy.ml Jure Repinc @lemmy.ml KDE Gear 25.04 released
cross-posted from: https://lemmy.ml/post/28743738
Every four months, the KDE community rolls out a new wave of app releases all at once.
These updates cover a wide range of needs. Whether you’re managing personal files on your laptop or overseeing servers located thousands of miles away, KDE offers powerful tools to help you stay in control. Need to troubleshoot someone’s system remotely from the comfort of your sofa? There’s an app for that, too. From creating short viral clips for social media to producing full-length documentaries, KDE’s creative tools have you covered. And when it’s time to unwind, you can count on KDE for enjoying music, movies, or a good book.
Keep reading to discover what’s new in KDE Gear 25.04…
-
KDE & Plasma users @lemmy.ml TheTwelveYearOld @lemmy.world How to close Kwin debug console when titlebars are disabled?
Edit: None of the answers I got work so I went ahead and filed a bug in KDE bugzilla: https://bugs.kde.org/show_bug.cgi?id=502901
Neither
CTRL Q
orCTRL W
work for me. I set a hotkey for the window operations menu in Settings app > Shortcuts > KWin > Window Operations Menu, but then pressing the close button in the context menu that shows, closes the window of the other window I was focused on and not the debugger. -
KDE & Plasma users @lemmy.ml Jure Repinc @lemmy.ml LibreOffice 25.8 Landing Many Patches For Improving Qt Toolkit Integration
cross-posted from: https://lemmy.ml/post/28505177
In the past few days there has been an uptick in patches merged for the LibreOffice 25.8 open-source office suite around "Qt Weld" that has been seeing an increasing number of patches over the past few months for enhancing the Qt toolkit integration.
LibreOffice developer Michael Weghorn has been pushing many patches for enhancing the Qt toolkit support with LibreOffice for its "Weld" theming interface.
-
KDE & Plasma users @lemmy.ml Hemingways_Shotgun @lemmy.ca On-screen keyboard
Haven't looked too deeply into this before now because it's not a high high priority; more like a "would be nice." But has anyone found a touchscreen keyboard (like Maliit) that works on Wayland with non-kde apps. Maliit works with the kapps, but not anything else.
Switching to X11 to use a keyboard that does sort of work, and I lose the auto-rotation...
So it seems that we can't have both worlds unless someone knows more than I do (which I admit isn't hard to do)
-
KDE & Plasma users @lemmy.ml TheTwelveYearOld @lemmy.world Maximizing a window via Kwin script?
I looked at
KWin::Window
on the Kwin scripting API page but didn’t find any ways to make a given window become maximized. -
KDE & Plasma users @lemmy.ml TheTwelveYearOld @lemmy.world Keyboard navigable file explorers with a grid view?
I did some looking and there doesn't seem to be one, unless you know of any. Ideally I want a modal file manager like Yazi: it's keys are highly inspired by vim with H J K L navigation (H & L for traversing directories), a visual mode for selecting files, and lots of commands and customization. The one thing its missing is a grid view to preview image files. None of the orthodox file manager seem to have one, including Krusader which I just looked at. I'd love to finally stop using the mouse for file management and could go with either a TUI or GUI manager.
-
KDE & Plasma users @lemmy.ml TheTwelveYearOld @lemmy.world Taking region screenshots faster?
Edit: I edited the script to take a screenshot asynchronously, get the region with
slurp
, and usemagick
to crop it. I also multiply the values from slurp 2x to account for the 200% display scaling I have.undefined
#!/bin/bash die(){ notify-send "$1" exit 1 } cleanup(){ [[ -n $1 ]] && rm -r "$1" } SCR_IMG=$(mktemp -d) || die "failed to take screenshot" trap "cleanup '$SCR_IMG'" EXIT spectacle -nbo "$SCR_IMG/scr.tiff" & region=($(slurp -b "#00000000" -c "#80808080" -w 2 -f "%w %h %x %y")) for i in "${!region[@]}" do region[i]=$(expr ${region[i]} "*" "2") done magick "$SCR_IMG/scr.tiff" -crop "${region[0]}x${region[1]}+${region[2]}+${region[3]}" "$SCR_IMG/scr.tiff" tesseract "$SCR_IMG/scr.tiff" "$SCR_IMG/scr" &> /dev/null || die "failed to extract text" wl-copy < "$SCR_IMG/scr.txt" || die "failed to copy text to clipboard" notify-send "Text extracted from image" "$(head -c 100 "$SCR_IMG/scr.txt")" || die "failed to send notification" exit
-
KDE & Plasma users @lemmy.ml TheTwelveYearOld @lemmy.world Desktop effects for adding custom shadows? (to maximized windows)
KDE has settings for shadows but they don't show on maximized windows (I have the maximize window gaps script installed). I'm wondering if there are any scripts that produce their own shadows.
-
KDE & Plasma users @lemmy.ml ButWhatDoesItAllMean @sh.itjust.works Any way to anchor Plasma Widgets to prevent shifting when scaling display and scaling back
Hi All, I've got a minor inconvenience problem that I'm wondering if there's a solution for out there. I have some plasma widgets that I keep on the far right edge of my screen (clock, CPU utilization, etc). I have my TV in my living room connected via a long HDMI cable that I'll use as a secondary display on occasion. When I do that, I have the scale set on the TV screen (I'm using Wayland) to 150% to make it more readable on the TV from the couch. After I'm done, I disable that secondary monitor and make my primary monitor active again, which has the scaling set back to 100%. After this scaling to 150% and back, the widgets that were on the far right of my screen are now sitting somewhat right of center but no longer on the edge of the screen (scaling to 150 moved them inwards). I'm wondering if there's a way to somehow "anchor" them so that they stay along the edge of the screen when scaling back down, so they always align with the edge? Appreciate any thoughts!
-
KDE & Plasma users @lemmy.ml TheTwelveYearOld @lemmy.world Adding a custom refresh rate or cvt modeline to KDE Wayland?
Edit: I got answers on the Fedora forum and used this command in my parallels VM and restarted:
sudo grubby --update-kernel=ALL --args=video=Virtual-1:3456x2234@120
.I'm trying to get a custom resolution & refresh rate in KDE Wayland. I can get 120hz working on X11 by getting a modeline with
cvt 4112 2572 120
and usingxrandr
commands, but how about Wayland? Perhaps be done withkscreen-doctor
? -
KDE & Plasma users @lemmy.ml TheTwelveYearOld @lemmy.world Showing window shadows with maximized window gaps?
I installed this maximized window gaps Kwin script on KDE 6. It works fine but I'm wondering if there's a way to show shadows when windows are maximized.
-
KDE & Plasma users @lemmy.ml TheTwelveYearOld @lemmy.world Managing windows and focusing specific apps in KDE?
TLDR: I want to be able to set specific window sizes and positions of the current window with hotkeys, as well as focus on specific apps with hotkeys.
I've made posts like this elsewhere as I've lately been really trying to figure out Linux. Anyway, right now KDE is very appealing since its very customizable and has a plugin to recreate Window 11's Mica effect.
First, I want an alternative to Rectangle Pro app on Mac, which let's you set many hotketys for changing the current window's size & position: like use up the left or right halves or thirds of the screen, or corners and taking up a quarter of the screen. You can also make custom window layouts and bind those to keys. I've been told to use a WM like Sway, but then I'd have to make my own DE from scratch.
Second, I want to focus on specifc apps with hotkeys. For instance, I'd want to press
CTRL Shift Z
to switch specifically to Zen Browser or open it if it isn't opened, andCTRL Shift O
-
KDE & Plasma users @lemmy.ml Crash @lemmy.ml Dolphin quick search not working
Hey all I'm a little confused by something. I can't seem to quick search things in Dolphin, for instance if I try and look up a folder it says "no items matching the search" even though it will show up when looking for it on the command line and if I just manually search it myself. Does anyone know a fix for this?