this post was submitted on 16 Mar 2024
20 points (95.5% liked)
Steam Deck
14803 readers
132 users here now
A place to discuss and support all things Steam Deck.
Replacement for r/steamdeck_linux.
As Lemmy doesn't have flairs yet, you can use these prefixes to indicate what type of post you have made, eg:
[Flair] My post title
The following is a list of suggested flairs:
[Discussion] - General discussion.
[Help] - A request for help or support.
[News] - News about the deck.
[PSA] - Sharing important information.
[Game] - News / info about a game on the deck.
[Update] - An update to a previous post.
[Meta] - Discussion about this community.
Some more Steam Deck specific flairs:
[Boot Screen] - Custom boot screens/videos.
[Selling] - If you are selling your deck.
These are not enforced, but they are encouraged.
Rules:
- Follow the rules of Sopuli
- Posts must be related to the Steam Deck in an obvious way.
- No piracy, there are other communities for that.
- Discussion of emulators are allowed, but no discussion on how to illegally acquire ROMs.
- This is a place of civil discussion, no trolling.
- Have fun.
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I agree with the others that you would likely be better off modifying KDE to suit your needs.
If you do want to install pacman packages and have them persist between updates, you could try rwfus which makes an RW overlay that lets you install packages. There are some catches though, mostly you can't update using
pacman -Syu
and you can't installglibc
.There's another way to install packages, where you create a temporary folder, download the package there, and then install it in your home directory instead to keep it between updates. I don't have a guide for it, but I do have an example of using it to install the package
fakeroot
. You'll have to set pacman up first, but then instead of doing a normal pacman install you do the following:mkdir -p ~/.local/bin
sudo pacman --cachedir /tmp -Sw --noconfirm fakeroot
tar -xf /tmp/fakeroot-*.pkg.tar.zst -C ~/.local --strip-components=1 usr/bin usr/lib
sudo rm -f /tmp/fakeroot*.pkg.*
Swap out "fakeroot" for the package name you're trying to install and it should work.