this post was submitted on 04 Mar 2026
121 points (96.2% liked)
linuxmemes
30420 readers
1910 users here now
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.
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
sudoin Windows. - No porn, no politics, no trolling or ragebaiting.
- Don't come looking for advice, this is not the right community.
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.
6. (NEW!) Regarding public figures
We all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations. - Keep discussions polite and free of disparagement.
- We are never in possession of all of the facts. Defamatory comments will not be tolerated.
- Discussions that get too heated will be locked and offending comments removed. Β
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.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Depends pretty wildly on what you like.
Some things that I do:
I never want automatic locking
I always lock my machine manually when leaving it, with Super-\ (Super normally being the Windows key). I also want my monitor to power off after a few seconds in that mode, and then wake back up if I start typing. I also want to use a black screen rather than swaylock's default white.
in my ~/.config/sway/config:
in ~/bin/myscreensaver.sh:
By default, X11 (and Wayland, apparently, though I've spent less time looking at Wayland's APIs) don't "store" clipboard state -- they just facilitate transferring copied data from one application to another application where it's being pasted. This means that if one copies data in one application and then closes that application, the clipboard contents go away. I don't really like this behavior. One way to avoid it is to use a "clipboard manager"
a piece of software that saves a copy of the data itself. If you install
clipmanandwl-clipboard, you can do this:In ~/.config/sway/config:
I want to get notifications when my laptop battery is low. Install
poweralertd, and then in ~/.config/sway/config:I don't use it that much, but Sway has a "scratchpad", where one can stuff a window that one is working with. With this, I send the current window there with Super-Shift-minus then make it pop back up as a floating window with Super-minus:
I have a mute button on my laptop's keyboard. I make that mute the default PipeWire sound sink. In ~/.config/sway/config:
I swap Caps Lock and left Control. This is how traditional Unix keyboards worked, and is generally more-friendly if you are using the Control key a lot more than Caps Lock. I'd consider this almost a precondition to use emacs without making your left pinky miserable. In ~/.config/sway/config:
That also sets my menu key (on my desktop) and right Alt key (on my laptop, which doesn't have a menu key) to be Compose. That way I can do things like type "ΓΆ" by hitting Compose o and then the double-quote key, or an em-dash ("β") with Compose hyphen hyphen hyphen.
I don't like keeping my mouse pointer visible unless I'm actually moving it. In my ~/.config/sway/config, this will hide it after three seconds:
I like to have a way to, using the keyboard, hide the latest notification shown by swaync, the default Sway notification manager. In ~/.config/sway/config:
Then Super-backtick will hide the most recent notification to show up.
Neat, thanks!
Thanks for sharing.