158
submitted 1 day ago* (last edited 16 hours ago) by Mwa@thelemmy.club to c/linux@lemmy.ml

So a few months back I asked about you guys os in c/asklemmy, so this time I wanna ask about your desktops you use on this same account.
(I use kde but plan to move to cinnamon I find kde buggy and gnome tracker3 randomly broke for no reason + themeing so yh idk if these happened to anybody)

(page 3) 50 comments
sorted by: hot top controversial new old
[-] doomsdayrs@lemmy.ml 13 points 1 day ago
[-] thedeadwalking4242@lemmy.world 13 points 1 day ago

Gnome on Nixos I like how standard it is I know what to expect

[-] TheFrirish@jlai.lu 1 points 22 hours ago

Funny I use KDE on NixOS because it's the only OS where it doesn't freeze my whole system up and I have to force reboot. (issue caused by AX210 Intel driver)

load more comments (1 replies)
[-] Lettuceeatlettuce@lemmy.ml 3 points 21 hours ago

KDE on my main gaming PC, or if I want something that looks really modern and sleek without tons of setup/tweaking on another PC.

Mint with Cinnamon if I want a #justworks setup that is rock stable and I don't need to look sexy.

My side business laptop uses LMDE with Cinnamon for that reason. I need that thing to be rock stable and dependable at all times.

Cinnamon has been more stable for me than any other DE, and in my experience, is just as performant as other low-spec favorites like XFCE. My fresh install of LMDE with Cinnamon right after boot uses about 850MB of memory. My testing with XFCE was about the same, maybe 50-75MB less, which for my use case is effectively identical.

Not crapping on XFCE though, I like playing with it on one of my old thinkpads. Not a fan at all of Gnome, I've tried to like it for years, but I just don't care for it, and I experience quite a few bugs.

I plan on trying the new Cosmic DE soon, it seems like Gnome done better, and I could see myself liking it from the reviews I've watched.

load more comments (2 replies)
[-] JRepin@lemmy.ml 39 points 1 day ago* (last edited 1 day ago)

KDE Plasma on all my computers and also as desktop mode on Steam Deck. because it supports the latest technologies especially when it comes to graphics (HDR, VRR) also has best support for Wayland and multi-monitors. It looks great out of the box and it has a lot of features out of the box and I do not need to battle with adding some extensions that break with almost every update. KDE Plasma is also the most flexible desktop and I can set the workflow really to fit my desires and I can actually set many options and settings. And despite all these built-in features and configurability it still uses very few system resources and is very fast and smooth. Oh and the KDE community is one of the most welcoming I have met in FOSS world, and they listen to their users instead of the our way or the high way mentality I have so often encountered in GNOME for example. So yeah TLDR KDE Plasma is the one I like the most of all in the industry, even when compared to proprietary closed alternatives.

[-] octopus_ink@lemmy.ml 17 points 1 day ago* (last edited 1 day ago)

Was a Gnome user until Gnome 3.

Since Plasma 5, I use KDE Plasma.

I'm just going to share my unvarnished opinions here, I clearly understand that Gnome users feel differently, and that's okay.

  • Gnome 3 performance was objectively worse on every bit of hardware I tried than Plasma. (Unfortunately I had functional gripes with Plasma 4 so couldn't use it.)
  • The years of faffing about I had trying to be happy with Gnome 3 and trying to use other alternatives until Plasma 5 was ready pretty much convinced me of this:
    • Gnome devs care more about achieving their vision of how a desktop should be used than they do about accommodating users who might feel differently. This is my perception, and it's a deeply held opinion. No matter how strongly you feel I'm wrong, you aren't going to change my mind. You can come at me if you want, but it's going to bear no fruit.
    • KDE devs have a vision, but place nearly equal importance on ensuring their users can make different choices if they choose. If this isn't true, they do a damn good job of pretending it is, and that's good enough for me. 🙂
  • I'm unhappy with the degree to which it appears the Gnome team has actively worked against the ability for users to easily customize, and with various feature removals that at this point are so far in my past that I probably don't remember the specific things that pissed me off, but I remember their explanations for feature removals being salt in an open wound every last time I cared enough to investigate their stated reasons.

Plasma 6 does everything I want the way I want. I have loaded it (and Plasma 5) on very low end and very high end hardware and found it performant and functional on both, consistently.

You'll note I don't claim it to be the best. There are folks out there for whom the Gnome vision happens to be how they like to work, or who aren't bothered by whatever hoops you have to jump through currently to customize a Gnome environment, and I'm sincerely happy for those people. For them, Gnome is the best.

There are lots of other DEs and of course tiling WMs exist, but it takes me no time at all to have a fresh plasma install working the way I want my computer to work and looking the way I want it to look, and thus I literally have zero complaints. So for the past few years I haven't even looked at any alternatives. If there's ever a time that I don't find the desktop product itself, and the KDE development team's approach to desktop development, to be absolutely perfect fits for me, I'll look elsewhere - but honestly probably not at Gnome.

load more comments (3 replies)
[-] chrash0@lemmy.world 23 points 1 day ago

these days Hyprland but previously i3.

i basically live in the terminal unless i'm playing games or in the browser. these days i use most apps full screen and switch between desktops, and i launch apps using wofi/rofi. this has all become very specialized over the past decade, and it almost has a “security by obscurity” effect where it’s not obvious how to do anything on my machines unless you have my muscle memory.

not that i necessarily recommend this approach generally, but i find value in mostly using a keyboard to control my machines and minimizing visual clutter. i don’t even have desktop icons or a wallpaper.

[-] sping@lemmy.sdf.org 10 points 1 day ago

I'm still on i3 as it's been convenient, but this:

this has all become very specialized over the past decade

resonates. I keep incrementally adding personal tweaks and hotkeys to my setup, and I have all my dotfiles in a repo so it's persistent across installations.

One example was I made my headphone button pause/play videos with i3's config:

bindsym XF86AudioPlay exec playerctl play-pause

But then I adopted a script to toggle mic mute on work Zoom meetings, so I combined it with the above - if I'm in a meeting it toggles mute, otherwise it play-pauses any current video. The script, for now:

#!/bin/bash
#
# Handler script for hitting mute on the headphone.
#

CURRENT=$(xdotool getwindowfocus)
ZOOM=$(xdotool search --limit 1 --name "Zoom Meeting")

if [[ -n "$ZOOM" ]]; then
    # if zoom is active, toggle mic mute
    xdotool windowactivate --sync ${ZOOM}
    xdotool key --clearmodifiers "alt+a"
    xdotool windowactivate --sync ${CURRENT}
else
    # otherwise do play/pause
    playerctl play-pause # will fail if no player found
fi

and of course I altered the i3 config to launch that script rather than playerctl directly.

load more comments (2 replies)
[-] supermair@lemmy.ca 33 points 1 day ago

GNOME. Eagerly waiting for cosmic.

load more comments (7 replies)
[-] nemno@lemmy.world 5 points 1 day ago

xfce, i dont need that other bloat.

[-] frankwilco@lemm.ee 3 points 23 hours ago

XFCE.

I recently switched to it after a year or so with KDE. Deff see some improvement in terms of battery life with my laptop, but I'm still not used to the lack of WinKey+Num shortcuts (I'm aware of docklike, but I need labels for open windows).

[-] Mwa@thelemmy.club 1 points 18 hours ago

Winkey on linux is called superkey you can configure it to do what you want in settings.

[-] ace_garp@lemmy.world 6 points 1 day ago

MATE (prn: MAH-Tay)

because it comes with standard Trisquel and is a smooth DE experience.

[-] theunknownmuncher@lemmy.world 3 points 1 day ago

Ha, had no idea it was pronounced like that. I've always said MATE like "date"/"rate"/"fate"

[-] ace_garp@lemmy.world 2 points 20 hours ago

You probably didn't even know it's pronounced Jimp too!!

/s

load more comments (3 replies)
[-] Xuntari@programming.dev 6 points 1 day ago

I use i3. Pretty bare bones, so it took me a while to get productive with it. But it's all exactly how I want it, it's all mine.

[-] abbiistabbii 4 points 1 day ago

OK so I have used several DEs but right now I'm on Plasma 6 because frankly, it's the best out there. It's easy to use, customizable, intuitive and looks nice. Is it on the heavier side? Yes, but that's okay. Also it helps that I have learnt the keyboard shortcuts on this.

I have used XFCE, Mate and Cinnamon in the past. If KDE somehow vanished off the face of the planet, I would likely switch to XFCE because it's light, customizable and fully functional.

[-] Oinks 6 points 1 day ago

I'm running KDE Plasma with the revived Krohnkite for auto tiling. Plasma 6.2 seems to have fixed most of the bugs from 6.0 and 6.1, at least the ones I've noticed.

I was using Sway/SwayFX for a few months but was missing some KDE Gear apps like Dolphin and Okular which I couldn't get to display correctly. KDE is afaik the only desktop with a working Qt theming engine right now, so I can't really see myself switching (unless maybe if they break Krohnkite again).

[-] OwlPaste@lemmy.world 28 points 1 day ago

Xfce... Because I donno, been using it for many years

load more comments (5 replies)
[-] superkret@feddit.org 24 points 1 day ago

Gnome. It just works out of the box and I can fly through it using the keyboard and touchpad without having to configure it first.
I've done the whole song and dance with tiling WMs, or going through all of KDE's settings until it was perfect, but I just can't be bothered anymore.

[-] shertson@lemmy.world 6 points 1 day ago

Gnome because it is the default in my district, works right out of the box and I'm too old to fart around with customizing things anymore.

I just want to get to work.

load more comments (1 replies)
[-] JustMarkov@lemmy.ml 15 points 1 day ago

KDE, because it has all the features I need and also because I love theming and while QT apps can be themed pretty easily, GTK theming is somewhere between being absolutely horrible and non-existance.

load more comments (1 replies)
[-] savvywolf@pawb.social 19 points 1 day ago* (last edited 1 day ago)

Cinnamon. Desktop environment peaked in the Windows XP/Gnome 2 days and everything else is just change for the shake of change. :C

My only annoyance is lack of Wayland support. Tried out cosmic, but it doesn't have the Windows XP/Gnome 2 style window list.

Screenshot for anyone interested:

load more comments (6 replies)
[-] Oha@lemmy.ohaa.xyz 20 points 1 day ago

Sway. Very customiseable and extremely snappy

load more comments (1 replies)
[-] jjjalljs@ttrpg.network 9 points 1 day ago

I am extremely basic and I'm using the XFCE that came with Linux mint. I don't need anything fancy.

load more comments (3 replies)
[-] tetris11@lemmy.ml 13 points 1 day ago

xfce4. Stable as hell. X11. Can move windows around using just some keypresses.

[-] BCsven@lemmy.ca 1 points 21 hours ago

What broke with tracker3 ?

[-] Mwa@thelemmy.club 1 points 18 hours ago

Idk,it would not run anymore.

[-] BCsven@lemmy.ca 1 points 17 hours ago

Easy to force a tracker reset, or enable disable. Or even reinstall. Seems easier than findinf a new DE no?

Also tracker ahould not be using up so much diskIO or CPU like people mention, if it is it is tripping up on a files internal data, and status/logs will show which file(s)

load more comments (3 replies)
[-] JustEnoughDucks@feddit.nl 5 points 1 day ago* (last edited 1 day ago)

KDE for my main PC. Pretty with floating panels, KDE Connect, QT apps are often the best apps in their class and are perfectly integrated (FreeCAD, krita, okular, kdenlive, vlc, dolphin, etc...) And konsole is also very full featured.

I don't know what KiCAD uses, but it also seems very well integrated into the KDE desktop unlike most gnome apps.

XFCE on MX Linux for an old Intel Compute Stick to keep it very usable.

[-] pr06lefs@lemmy.ml 2 points 1 day ago

Xmonad with XFCE in no-desktop mode.

I can use the xfce tools to configure things like mouse and screen settings, but visually it's just xmonad.

[-] tobifroe@lemm.ee 5 points 1 day ago* (last edited 28 minutes ago)

I'm on Hyprland mostly because of all the tiling window managers out there these days, it feels like the most usable default config and the ecosystem (e.g. hyprlock etc) feels pretty complete.

load more comments (2 replies)
[-] ColdWater@lemmy.ca 6 points 1 day ago

I use KDE, no bugs for me (I found one but it's already fixed in the latest update) and it's feels like my second home

[-] fratermus@lemmy.sdf.org 4 points 1 day ago

Traditionally I've been running lighter desktops like opebox, xfce, or lmde. Last couple of years I've been using MATE with good results.

[-] notthebees@reddthat.com 3 points 1 day ago

OpenBox but that's a window manager, not a DE.

load more comments (1 replies)
load more comments
view more: ‹ prev next ›
this post was submitted on 30 Oct 2024
158 points (100.0% liked)

Linux

47943 readers
1265 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS