This is me. I've been configuring my desktop environment this past week and I don't know what else to configure
linuxmemes
Hint: :q!
Sister communities:
Community rules (click to expand)
1. Follow the site-wide rules
- Instance-wide TOS: https://legal.lemmy.world/tos/
- Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
2. Be civil
- Understand the difference between a joke and an insult.
- Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
- Don't get baited into back-and-forth insults. We are not animals.
- Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
- Bigotry will not be tolerated.
- These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
3. Post Linux-related content
- Including Unix and BSD.
- Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of
sudo
in Windows. - No porn. Even if you watch it on a Linux machine.
4. No recent reposts
- Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
5. π¬π§ Language/ΡΠ·ΡΠΊ/Sprache
- This is primarily an English-speaking community. π¬π§π¦πΊπΊπΈ
- Comments written in other languages are allowed.
- The substance of a post should be comprehensible for people who only speak English.
- Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed. Β
Please report posts and comments that break these rules!
Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.
Literally me with my Framework laptop, trying to get hidpi to work. I either get tiny text, blurry text, tiny icons, but fine text, or some other weird combination of shit. Luckily, gnome-terminal does work. So as long as I never use any GUI apps, then hidpi "works" on the Framework. π₯΄π
No, I will not switch to Fedora. Yes, I've tried it. No, I'm not a fan of "fixing" hidpi by avoiding scaling, everything is tiny. Yes, I've also tried the new Framework display at 2x scaling, no I didn't like it.
The real solution for me is to avoid this class of problems altogether by going back to a regular dpi screen, where everything was legible and clear. I'm moving back to an X11 Carbon (rip Dell XPS) next chance I get.
Nothing left to configure? Install Gentoo!
Go help other people in forums
I do and its is very satisfying. Even though its very basic stuff.
Wanna help me right now configuring Nextcloud server on NixOS? Hehe
You can search up nextcloud flake and it will have all of the needed stuff, plus in the nixos search if you go to NixOS options you can see what config options it has
For some reason itβs saying it doesnβt have access to the config files that itself created. I checked permissions and Nextcloud user has the ownership of the config fikes
Lol, that might be me in about a month or two
Nextcloud is on my list of things to learn. But NixOS, that thing scares me.
Might be your next adventure
Get yourself a home lab, then you'll have infinitely more stuff to configure.
That's a endless rabbit hole that leads to multiple racks
I haven't got their yet I'm still at the stack of old desktops sitting on top of eachother.
Me looking at my config with my own soul injected into it and nothing left to do:
Me with NixOS lmfao
"Oh I can't wait to get rid of the pain of reconfiguring everything constantly when I reinstall"
"Wait....... where's the rest of the stuff to reinstall? Guys?"
Love your profile picture and banner btw
Run random commands until you break some shit
Follow me for more Linux tips
sudo rm -rf /
Write a script to delete every 5th file under /etc/.
EDIT: did it for you
#!/bin/bash
count=0
for file in $(find /etc/ -type f); do
(( count+=1 ))
if (( $count % 5 == 0 )); then
sudo rm -rf $file
fi
done
And now you have lots of stuff to fix and configure. You're welcome!
hi satan
Bonjour
Well that just got added to my interview question bank...heh.
seems reasonable enough