426
61
submitted 7 months ago* (last edited 7 months ago) by MythicalNewt@lemmy.kde.social to c/kde@lemmy.kde.social

KDE 6 seems to have gotten rid of run command, mark taskbar entry and log to a file options in applications specific settings under notification settings, only play a sound and show message in popup actions remain.

Are there any plans to bring back this functionality in future updates?

427
51
This week in KDE: Dolphin levels up (social.opendesktop.org)
428
14
submitted 7 months ago by Kevadroz@lemmy.world to c/kde@lemmy.kde.social

I have a 720p integrated screen and a 1440p external monitor, I only have one active at a time, so they share panels.

I have a global menu on my top panel and when I'm using the 720p screen on some applications that menu can overflow and cause the right plasmoids to move offscreen.

Is there any way of making each screen use different panels or failing that is there a solution to this that doesn't involve removing the global menu as it is?

429
38
submitted 7 months ago by kdenlive@floss.social to c/kde@lemmy.kde.social

This year #Kdenlive is participating in Season of KDE with two projects. Check out the progress of the students:

Implementing Multi-format Rendering:
https://ajayslog.vercel.app/posts/season-of-kde-01/

Enabling editing of keyframe curves and advanced keyframe types:
https://aisuneko.moe/posts/sok24-blog1/

#kde #sok #videoediting

@kde

430
21

Gerade kam das #Plasma6 Update von KDE auf #openSUSE #Tumbleweed heraus - das Update ging mehr als nur Glatt von der Bühne!

#opensuse #linux

@opensuse @kde

431
109
submitted 7 months ago by kde@floss.social to c/kde@lemmy.kde.social

Attention people in Southern California! KDE is coming to town (to set up a booth a SCaLE21x).

Come visit us at @socallinuxexpo at the Pasadena Convention Center, enjoy some talks, meet KDE contributors, marvel at our technological... er... marvels, and have a good time!

https://www.socallinuxexpo.org/scale/21x

@kde@lemmy.kde.social

#SCaLE21x #event #linux

432
34
submitted 7 months ago* (last edited 7 months ago) by schizoidman@lemmy.ml to c/kde@lemmy.kde.social

I have a 3D printing software that does not display well on Wayland. Instead of relogging to start a x11 session is there a way to force that one software to display in x11 instead of Wayland?

Edit

AddingQT_QPA_PLATFORM=xcb to the enviroment variables was the solution for me.

Thanks to everyone for the help.

433
34
submitted 7 months ago by bali10050@lemmy.world to c/kde@lemmy.kde.social

Now that kde added support for hdr, is there a way I can watch videos in hdr with firefox or do I need to wait a bit more for that?

434
98
435
6
submitted 7 months ago by Capricorn@lemmy.today to c/kde@lemmy.kde.social

Anyone knows how to add a key-binding in konsole that binds a key combination to a sequence of actions?

Maybe, this could be achieved via a script?

In my case, I just want a key-binding to switch to a certain tab and send the command !! (last used command). This is super-useful while developing. I can do the first action with standard konsole keybinding and the second action using a qdbus command. I don't know how to put them together...

436
83
submitted 7 months ago* (last edited 7 months ago) by kdenlive@floss.social to c/kde@lemmy.kde.social

Exciting news! 🚀 #Kdenlive 24.02 is here with major upgrades, including Qt6 & KDE Frameworks 6. It's faster, sleeker, and sets the stage for the next decade.

(Flatpak package will be out soon)

https://kdenlive.org/en/2024/03/kdenlive-24-02-0-released/

#videoediting

@kde

437
19

I haven't seen the update come through to my system but since I have a more-than-slightly-borked grub setup, I have a feeling it could be to do with that.

As a side note RE: above -- Are people running a kernel newer than 6.5.0-18-generic ?

438
29
submitted 7 months ago* (last edited 7 months ago) by Pantherina@feddit.de to c/kde@lemmy.kde.social

This is a small Tutorial how to convert Konsole to never, I mean never, open a new window again.

I mean, we moved away from Windows for a reason, right?

Also, I will show you how to use a different shell and add custom right-click actions for various useful things.

screenshot

No new windows

Go to Konsoles Settings, the second checkbox is "open all konsole windows in a single process". Check this, as it is needed.

Now to edit the system desktop entry, never do this in place, copy it to your user directory, entries here always overwrite system ones. (This can be used to hide apps too, use touch ~/.local/share/applications/name.desktop)

cp /usr/share/applications/konsole.desktop ~/.local/share/applications/

Now edit this file with your editor.

Replace Exec=konsole with Exec=konsole --new-tab.

Profile: Different Shell

Bash is the default and I highly advise against using chsh if you want to use fish, zsh or others.

Instead, create a new Konsole profile, set its default command to for example /usr/bin/fish and set it as default profile!

Profile: Distrobox

If you use Distrobox, you may want a profile that launches it directly. The advantage is that you can color it differently and much more.

In the settings create a new profile and set the startup command to distrobox enter Boxname.

Mine is for Fedora, while my main system is Fedora Atomic KDE.

Custom right-click actions

You can remove unneeded translations from the desktop entry to make it easier to work with.

In the Actions= line you define what you want. Below the main entry you put the actions with name, icon and command.

Here I have examples for launching the Distrobox Profile, opening a root shell and opening a remote ssh session.

The complete desktop entry (click me to expand)

[Desktop Entry]
Type=Application
TryExec=konsole
Exec=konsole --new-tab
Icon=utilities-terminal
Categories=System;TerminalEmulator;
Actions=FedoraBox;root;ssh;
X-DocPath=konsole/index.html
X-DBUS-StartupType=Unique
X-KDE-AuthorizeAction=shell_access
X-KDE-Shortcuts=Ctrl+Alt+T
StartupWMClass=konsole
Keywords=terminal;console;script;run;execute;command;command-line;commandline;cli;bash;sh;shell;zsh;cmd;command prompt
Name=Konsole
GenericName=Terminal
Comment="$GenericName"

[Desktop Action FedoraBox]
Name=Distrobox
Icon=fedora-logo-icon
Exec=konsole --new-tab --profile FedoraBox # this launches "distrobox enter FedoraBox"

[Desktop Action root]
Name=root Terminal
Icon=folder-root-symbolic
Exec=konsole --new-tab -e pkexec $SHELL #or define a shell like fish

[Desktop Action ssh]
Name=ssh to X
Icon=folder-remote-symbolic
Exec=konsole --new-tab -e ssh user@IP:PORT -i /path/to/key

Note that I removed the actions for "new tab" and "new window". For some reason Plasma shows the "open new window" always, and due to the replacement this opens a new tab instead.

Ctrl+Alt+t, opening from Dolphin and more will also open a new tab.

Btw, if somebody can help me figure out how to focus the Konsole window when opening a new tab, that would be nice. This is currently missing

439
-31
NEW VIDEO OUT NOW!!! (mastodon.social)
submitted 7 months ago* (last edited 7 months ago) by carlo11fb@mastodon.social to c/kde@lemmy.kde.social

NEW VIDEO OUT NOW!!!
https://youtu.be/pAU-A11RKUc

@kde

440
23
submitted 7 months ago* (last edited 7 months ago) by penquin@lemmy.kde.social to c/kde@lemmy.kde.social

Hello all,

I have created a post on reddit to fix the issue where SDDM doesn't scale well on plasma 6, and wanted to share it here in case anyone is having the same issue

I have two monitors that are 4k and SDDM wasn't scaling correctly on either of them. It was too small and was very annoying. I tried many ways to fix it, but nothing helped. Applying plasma settings to SDDM from the settings didn't help either. Some kind soul recommended an Arch wiki piece that helped me fix it. I want to share with everyone just in case. And here is the screenshot on what to do in case the wiki is not clear enough. Navigate to /etc/sddm.conf.d and create a new file and call it hidpi.conf (in case you don't have it), then add the following lines to it and save:

[Wayland]

EnableHiDPI=true

[X11]

EnableHiDPI=true

[General]

GreeterEnvironment=QT_SCREEN_SCALE_FACTORS=2,QT_FONT_DPI=192

You can change the QT_SCREEN_SCALE_FACTORS=2 to any number to fit the size of your screen. I set mine to 1.75 since it is the perfect scaling for my 27" monitor. Hope this helps. Have a good day

441
8

Game affected by it: DBD (my other games are isometric, but I doubt it's only DBD).

Anyone has this issue? More importantly, anyone found a solution? IDK if that matters, but I use 2 toolbars which go over the window, but neither get highlighted, so I do not believe they're stealing the focus. I tried hiding them and it didn't help, further making me believe they're not the issue.

442
75
443
25

This problem existed too in Plasma 5, but I was so excited that after the update to 6, there finally was a toggle for some kind of "don't ask about this again for this device" but it seems to do nothing.

So is this bug ever going to be fixed? Or is it actually not a bug? What are your workarounds? I hate that I have to walk to my TV stand to press enter everytime I turn on the machine.

#Plasma6 #KDE #KDEplasma6 #KDEplasma #KDEConnect

444
22
submitted 7 months ago by WadamT@lemmy.ml to c/kde@lemmy.kde.social

cross-posted from: https://lemmy.ml/post/12930181

Does anyone experience this bug with Plasma 6 Wayland and Firefox Wayland? Basically you drag and rearrange a bookmark in 'other bookmark' or home page, FF auto opens a bookmark above the bookmark you rearranged.

Video demo

  • OS: Arch Linux with Plasma 6 from official repo
  • Firefox version: 123.0.1 (64-bit)

Already filed a bug at Firefox bugzilla

445
38
submitted 7 months ago* (last edited 7 months ago) by Matty_r@programming.dev to c/kde@lemmy.kde.social

Since the update, if I snap Firefox to the top the mouse seems to be offset a number of pixels compared to where the actual cursor is. It also affects the content in sites, not just stuff in Firefox.

Edit: Looks like it's not just when it's snapped, but as soon as it passes about the top 90% of the screen. Just took a screenshot, where you can see the cursor is hovering over Other Bookmarks, but it's activating the menu above it.

446
15

Posted about it on reddit, and I'm bringing it here. Anyone has this issue?

https://www.reddit.com/r/kde/comments/1b9nn69

447
22
submitted 7 months ago* (last edited 7 months ago) by talesofaprinny@mastodon.social to c/kde@lemmy.kde.social

PSA to those who use sunshine with KDE

Disable the systemd unit file I feel it just adds more troubleshooting. Use KDE's autostart for Sunshine.

If your sunshine is still broken, update the monitor to 0 in the web ui. Remember that monitor count will be different to some extent.

Use KMS until NVIDIA adds support to wayland for its NvFBC. It will take an eternity sadly. Enjoy!

And no, Steam client sucks in Wayland with all the flickering. That's the bad news #kde #linux #linuxgaming

@kde

448
116
submitted 7 months ago* (last edited 7 months ago) by kde@floss.social to c/kde@lemmy.kde.social

KDE believes in the power of diversity and inclusion. Women* enrich our community, shaping more inclusive and accessible tech.

💡 Join us in embracing diversity, inclusion and #FOSS. Be part of our Community to inspire inclusion:
https://community.kde.org/Get_Involved

#InspireInclusion #KDECommunity

@kde@lemmy.kde.social

449
11
submitted 7 months ago by samuelinox@lemm.ee to c/kde@lemmy.kde.social

I have been trying to connect to a server using sftp from Dolphin. I unfortunately get the following error message:

kex error : no match for method server host key algo: server [ssh-dss], client [ssh-ed25519,ecdsa-sha2-nistp521,ecdsa-sha2-nistp384,ecdsa-sha2-nistp256,sk-ssh-ed25519@openssh.com,sk-ecdsa-sha2-nistp256@openssh.com,rsa-sha2-512,rsa-sha2-256]

The problem might be that the server uses the legacy ssh-dss for connections, which is disabled by openSSH. But while with ssh you may add the flag

-oHostKeyAlgorithms=+ssh-dss

to enable it’s use again, yet I can’t find any option to do the same in Dolphin. Is there any way to do this?

I’m on NixOS 24.05 with KDE Plasma 6.0.0 from the unstable branch.

450
31
submitted 7 months ago* (last edited 7 months ago) by Kalcifer@sh.itjust.works to c/kde@lemmy.kde.social

Original Post

I've had a similar issue in the past (KDE Plasma 5), which was perfectly solved by this solution, but, unfortunately, since updating to KDE Plasma 6, it has reappeared in the form of the mouse cursor changing its size when it hovers over certain applications.

For example:

Small cursor:

Large cursor:

I have so far observed this behaviour with KeePassXC (v2.7.6, Flatpak), Nextcloud Desktop (v3.12.1, Flatpak), and KWrite (v23.08.5, Flatpak).

I have tried reverting the afformentioned workaround for the previous issue, but then the old issue returns, only without this new sizing issue. How do I fix this?


  • Operating System: Arch Linux
  • KDE Plasma Version: 6.0.1
  • KDE Frameworks Version: 6.0.0
  • Qt Version: 6.6.2
  • Kernel Version: 6.7.8-arch1-1 (64-bit)
  • Graphics Platform: Wayland

Update (2024-03-09T00:20Z)

This may be an issue with Flatpak. An update to KWrite's Flatpak just came out, then I ran KWrite to check if the issue was fixed, and it was — the mouse cursor is no longer enlarged when it hovers over the app. I suspect that when an update rolls out for the other two applications the issue will be fixed, but I'll just have to wait and see.

view more: ‹ prev next ›

KDE

5149 readers
61 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 1 year ago
MODERATORS