cross-posted from: https://lemmy.dbzer0.com/post/28037255

Hey hey people. Relatively new Arch user here, but not new to Linux in general. I’ve been using Arch with KDE Plasma on this HP laptop from 2013, and I’ve been enjoying it a lot after spending a long time on Mint/Cinnamon.

But, I’ve noted that KDE is a bit slow on this machine, and is probably a bit too much. Earlier today, I decided to try out something lighter, and installed LXQt on it as a second DE. The experience was okay, with much improved responsiveness, a nice customizable retro look, and overall simpleness that still did the job mostly. But I also ran into a few issues that probably had to do with having two different DEs on the same machine and user. One thing in particular ended up annoying me so much I went back to KDE: The Discover app would just refuse to play nice with setting a dark theme on the rest of the environment, even when I tried setting it up with qt6ct.

So now I’m considering going to XFCE instead, as I probably should have done from the beginning. I just wish it had Wayland support already (I know it’s being worked on). Do you have any suggestions or tips for me in regards to this? I’m sure a lot of people will recommend their favorite tiling WM which I’m not sure I want to get into.

Also, other than that, upon returning to KDE, I found that my Discover would crash when trying to update Flatpaks (the only thing I install through it) and started thinking this experiment somehow broke it… but it’s Flatpak itself that seems to have an issue today. Might have to do with the latest curl update? Dunno if I should make a separate thread for that. https://discuss.kde.org/t/kde-discover-broken-with-latest-curl-update/21475

8 points

Hopefully he survives it. I keep my fingers crossed.

permalink
report
reply
5 points

He survived KDE and other heavy DEs. A normal Arch users habitat is a plain WM, ideally based on Wayland, so sway/Hyprland/qtile. He will be fine.

permalink
report
parent
reply
6 points

You are right, I shouldn’t have doubt an Archuser. BTW, I almost use Arch.

permalink
report
parent
reply
5 points

Arch adjacent

permalink
report
parent
reply
8 points
*

Since you don’t want a tiling wm, the cosmic desktop just entered alpha and is supposed to be fairly lightweight for a full DE.

https://wiki.archlinux.org/title/COSMIC

I use arch hyprland, btw.

permalink
report
reply
1 point

I’ve been hearing good things about it, makes me wanna try it.

permalink
report
parent
reply
7 points

If you’re not into tiling, install openbox and a panel of your choosing. You will quickly find that you don’t need a DE at all.

permalink
report
reply
2 points

I did like the Openbox part of LXQt. Might re-install that.

permalink
report
parent
reply
1 point

I don’t have an interest in the underlying project, but the default setup for Openbox on Archcraft looks really nice.

permalink
report
parent
reply
3 points

I like IceWM pretty well… for a non-tiling WM, that is. 😉

It’s very lightweight.

permalink
report
reply
2 points

Yeah I checked it out, it was extremely lightweight, but I didn’t really like how it looked. I know it could be customized but if I was going to take that effort I might as well do it on an Openbox setup.

I’m on XFCE now, really enjoying it, as I should have done from the beginning.

permalink
report
parent
reply

while I’m not sure about the tiling WM front I can help with the KDE optimization on Arch part:

To preface I’m sharing sections of my Bash script that I’m in the process of eventually releasing under AGPL-3.0 which should help explain the editing/verboseness of them.

For base/minimal Arch Linux Packages:

## `btrfs-progs` is dependent/only required if you use BTRFS as your file system.
## `grub` is also dependent if you use GRUB instead of Systemd as your init system.
## intel-ucode replaces amd-ucode (as discerned from your comment on this post) which installs Intel-based microcode for your processor/CPU.
pacstrap -K /mnt intel-ucode base base-devel btrfs-progs efibootmgr grub iptables-nft linux linux-firmware linux-lts man nano networkmanager pipewire pipewire-alsa pipewire-jack pipewire-pulse sudo

For Installing Core Packages

### grub-btrfs is omitted as it is orphaned as of Sept 3, 2024. https://archlinux.org/packages/extra/any/grub-btrfs/.
pacman -S --needed bash-completion cryptsetup dnsmasq e2fsprogs efibootmgr firewalld man-db networkmanager sddm sddm-kcm

KDE Focused Packages

## Installing plasma Group Packages
## https://archlinux.org/groups/x86_64/plasma/
pacman -S --needed breeze breeze-gtk discover drkonqi kactivitymanagerd kde-cli-tools kde-gtk-config kdecoration kdeplasma-addons kgamma kglobalacceld kinfocenter kmenuedit kpipewire kscreen kscreenlocker ksystemstats kwallet-pam kwayland kwin kwrited layer-shell-qt libkscreen libksysguard libplasma milou plasma5support plasma-activities plasma-activities-stats plasma-desktop plasma-disks plasma-firewall plasma-integration plasma-nm plasma-systemmonitor plasma-thunderbolt plasma-vault plasma-workspace plasma-workspace-wallpapers polkit-kde-agent powerdevil qqc2-breeze-style systemsettings xdg-desktop-portal-kde

## Installing kde-applications Group Packages
## https://archlinux.org/groups/x86_64/kde-applications/
pacman -S --needed dolphin kate kmix konsole kwalletmanager

AMD GPU Related Packages

## Installing Video Drivers
## FOSS AMD GPU Drivers
## Please see the table on https://wiki.archlinux.org/title/Xorg
pacman -S --needed mesa vulkan-radeon libva-mesa-driver mesa-vdpau xf86-video-amdgpu

## Enable the multilib repository for 32-bit application support:
sed -i "/\[multilib\]/,/Include/"'s/^#//' /etc/pacman.conf

## To enable 32-bit application support, the multilib repository is enabled by default using the sed command above. This allows the necessary drivers to be installable from the multilib repository.
pacman -S --needed lib32-mesa lib32-libva-mesa-driver lib32-vulkan-radeon lib32-mesa-vdpau
## Owners of older AMD graphics cards (GCN 1&2) may also want to install the ATI driver:
#pacman -S --needed xf86-video-ati

Some packages were omitted from the installation lines above as this was taken from my custom installer for self-hosting services.
I’d recommend checking the links provided above to to figure out what additional packages you want for yourself🤗

If you still have issues with KDE X11/Wayland on Arch or Ubuntu, feel free to DM me and I’ll try my best to help👍

permalink
report
reply
2 points

Wait. Should you really do pacman -Sy for all of those? Won’t that cause problems? Shouldn’t it just be pacman -S <packages> or go -Syu?

permalink
report
parent
reply

ah thank you for calling that out👍

pacman -Sy is definitely a mistake and you are correct in that it should be -S <packages> or -Syu

I’ve edited my previous comment to reflect this thank you!

permalink
report
parent
reply
2 points

Alright, thanks for that. I’ll take a closer look later today when I’m at the PC, but the plan today is to try out different minimal environments to see what I like. And this time I actually remembered to make a Timeshift snapshot ahead of time (my latest one was like a couple of weeks ago)

permalink
report
parent
reply

no worries and best of luck!

permalink
report
parent
reply

Linux

!linux@programming.dev

Create post

A community for everything relating to the linux operating system

Also check out !linux_memes@programming.dev

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

Community stats

  • 2K

    Monthly active users

  • 704

    Posts

  • 5.7K

    Comments