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)
KDE Plasma. I just like it. It seems to have options to do what I want, for the most part. There’s some things I wish it had, like a way to programmatically get the active window under Wayland, so StreamController could automatically change pages.
I stopped usin em myself cus my laptop aint nun too fancy and i hated watching my system use 1.5+ while not doing jack, so i tried window managers a couple times until it stuck :3 i3 btw
Gnome. I actually started with KDE. It’s a good DE, but it’s got so many options that I had choice fatigue. I constantly tweaked my taskbar instead of focusing on what I wanted to do. And it was easy to get it to a “looks broken” state
When I tried Gnome, I fell in love with it. I love the unique workflow, lack of distractions, the modern adwaita design, etc. Everything felt so polished
That being said, I don’t like how Gnome devs seemingly can’t agree on anything with other desktop environments. And I don’t like how they refuse to support server-side window decorations. Like, I agree with them that CSD are better than SSD, but it would be reasonable to support SSD for toolkits that haven’t/don’t want to implement CSD themselves, right?
I’m excited for Cosmic. It looks like it combines the best of Gnome and KDE, and the devs don’t have the “my way or the highway” mindset
I don’t like how Gnome devs seemingly can’t agree on anything with other desktop environments
Yeah, especially how they dont include minimize and maximize window buttons by default, that’s incomprehensible LOL
I’m not a Gnome user but I stopped minimizing my windows years ago. Don’t need that if you (a) don’t have icons on your desktop and (b) move your windows over to another workspace when stuff gets crowded.
That’s like saying I don’t need to clean my room if I can just shove everything into the closet
Wood. Usually medium density particle board.
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.
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_WINDOW=$(xdotool getwindowfocus) # convoluted command to find the intersection of two searches ZOOM_WINDOW=$(comm -12 \ <(xdotool search --name 'Meeting' | sort) \ <(xdotool search --class 'zoom' | sort)) if [[ -n "$ZOOM_WINDOW" ]]; then # if zoom is active, toggle mic mute xdotool windowactivate --sync ${ZOOM_WINDOW} xdotool key --clearmodifiers "alt+a" xdotool windowactivate --sync ${CURRENT_WINDOW} 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.[EDIT: Updated script as Zoom updated its window identities]
Another i3 user here. I slowly transitioned from KDE when switching keyboard layout stopped working as well as some other DE related things.
Ended up writing custom script for switching. Currently implemented with rofi in Perl, bc I like the syntax.
I still like having a bit nice gui, so i have wallpapers, some icons, etc. But I fell in love with terminal
along with neovim : ), soo kinda looking for that middle ground between look, performance and functionality.Haven’t finished tweaking all the configs to my liking, but after that vanilla Arch is the direction I plan to go, since many things in my current install that I have as well as haven’t customized work a bit questionably or exist for no reason.
Perl, bc I like the syntax
You… Monster
What? I know it’s a bit chaotic, but can be more readable than bash sometimes imo. Originally chose it because writing stuff for sed was getting too complex at some point and saw suggestions to use Perl for complex regex instead.