The Linux Thread - The Autist's OS of Choice

For me the progress from multi-screen setups went inverse really. I started off with a second screen in the 90s, usually accompanied by a second computer because that was actually practical for me. (Hardware/Software support for multiscreen setups also wasn't exactly great) In the zeros, the third screen found its way in as systems actually managed to handle two screens well enough. Then with LCDs, screens started getting oblong and also bigger and bigger, a trend I found highly ugly and irritating. Pixel density also seemed to get worse, not better, having me to revert to bitmap fonts some when in the early 10s because many vector fonts were a blurry mess without tons of tricks like subpixel aliasing and strong hinting with any appreciative kind of text density on the screen on your average consumer monitor.

Somewhere around that time the third monitor disappeared, then a few years later the second. I hated my entire FoV being taken up by huge monitors and it gave me head- and neck-aches personally. I experimented *a lot* with workflows and ergonomics while never really being happy and eventually ended up with a small 2560x1600 13.3" monitor this year. The kind you'd find in smaller notebooks - and that's it. Windowmanager is ratpoison which is often mistakenly labeled as a tiling window manager (you can but I don't use it as such as that doesn't make a whole lot of sense on 13.3") which is really more of a GNU screen for X windows, or an X window multiplexer. No window decorations, no taskbar, every program is "fullscreen". Switching is via key combinations similar to gnu screen. As the name implies, a mouse isn't needed at all.

Ratpoison has a feature where you can have small text messages pop up on the screen which are pretty customizable, I use that for various simple notifications, even ended up writing a small queue daemon so text messages don't overlap/cancel each other and everyone gets fair time on the screen that system is also aware when I'm not at the computer (saves the messaging for when I return) and also "knows" at which computer I'm at to display messages. (I have the same setup on my notebook) For interactive stuff that requires feedback I use dmenu, and a lot of my system stuff and scripts are quite dialog-driven via that. Since the nature of my program usage is very deterministic (the current focused program is the one I am definitively looking at, as it is the only one visible) these dmenu dialogs can take me to other windows interactively if something requires my direct attention and also take me back to what I was doing, without it being too jarring or interrupting for my workflow. It's a little bit akin to the Amiga Workbench "screen" concept, if not quite. I love this setup, it is very clean and minimal and it's great at eliminating distractions. Also this screen has almost three times the pixel density of my last screen, very good backlight (easier to do in a physically small screen) and is brilliant for any kind of text. I haven't had a headache in a while. Next upgrade is eink (there are 40 fps eink monitors now) or oled.
 
Stranded in an airport so I bought some sleep aids. One of them actually came with a disk

:story:
Thunky.jpg
 
Last edited:
I'm amazed they still do that.

Also I realize it's their actual names but naming your OS after a techno-baddie from a Bond flick is weird.
But a really cool Bond villain played by Christopher Walken. Unfortunately the movie itself was terrible.
 
Hello friends. I've been using Linux for about 5-6 years now and recently switched from Arch to Gentoo, from i3 to dwm, and from urxvt to st. Loving the new setup. I've also been trying to learn Bourne Shell and BASH, but it's been kinda slow going. My code is almost certainly still pretty flawed, but it'll get there. Below is from when I was working on my replacement for neofetch.
View attachment 3473540
Awk usage FTW. I've never gotten comfortable with awk but I've seen it used brilliantly. I make up for it with sed.
 
But a really cool Bond villain played by Christopher Walken. Unfortunately the movie itself was terrible.
Yeah. They had so much they could've done with that cast and chose mediocrity.

Though the zing from Gogol at the end about how they got all their good tech from Sillyvalley always stuck with me.
 
New Linux new fag stuff.

I messed up with iso images and ended up putting Garuda on my laptop on a portable SSD. I just thought fuck it and went with it. Said laptop now runs like shit off a stick instead of cancer aids.

Very happy. Still not killed desktop yet either.
Haven’t tried the bluetooth or wireless on laptop yet but it’s fairly immaterial as it’s usually wired.

Also got my SSD for the PC but don’t think I’ll clone, I’ll just do a new install.
 
Yeah. They had so much they could've done with that cast and chose mediocrity.
I was particularly annoyed at how wasted Grace Jones was. You had Grace Jones and you did this?

Never mind Roger Moore looking like a fucking mummy. He really aged out of that role.
For me the progress from multi-screen setups went inverse really. I started off with a second screen in the 90s, usually accompanied by a second computer because that was actually practical for me.
I mainly used a multi-screen setup for poker. I'd have an overlay with summary data on every player from stored hand histories and another monitor with vastly more detailed information. Then I put in a third mono monitor just for irc, and a second computer for remote terminal sessions.

One screen is generally enough for me now, or that and another computer. I generally have a personal computer and a business computer that is not allowed to do anything but work, so has no distracting fun stuff on it. But they're in different rooms (for that reason).
 
Somewhere around that time the third monitor disappeared, then a few years later the second. I hated my entire FoV being taken up by huge monitors and it gave me head- and neck-aches personally.
This is why I can't do multi-monitor setups. Monitors filling my peripheral vision gives me a headache VERY quickly.

With KDE it's pretty easy to stick with a single one and just use activities/workspaces to instantly switch to what I want to see.
 
With KDE it's pretty easy to stick with a single one and just use activities/workspaces to instantly switch to what I want to see.
I've never liked KDE's activities (though I try it now and then to see if it's suddenly become useful to me), mostly because firefox doesn't seem to play well with it. I prefer to use desktops to maintain context separation. Between IDE + floating IDE windows, system monitor apps (Lens for kubes stuff, etc) browser windows, and *sigh* slack, I easily use up three monitors. The other desktop has email, personal comms and media + another browser window.
 
I know the solution is very simple but my brain is not working well today. How can I choose the lines that have the highest page count for each of the threads?
Code:
a,b
nicholas-j-fuentes-vs-anime-rightist.120773,
nicholas-j-fuentes-vs-anime-rightist.120773,2
nicholas-j-fuentes-vs-bronze-age-pervert.120306,
nicholas-j-fuentes-vs-bronze-age-pervert.120306,2
nicholas-j-fuentes-vs-bronze-age-pervert.120306,3
nicholas-j-fuentes-vs-bronze-age-pervert.120306,4
 
I know the solution is very simple but my brain is not working well today. How can I choose the lines that have the highest page count for each of the threads?
Code:
a,b
nicholas-j-fuentes-vs-anime-rightist.120773,
nicholas-j-fuentes-vs-anime-rightist.120773,2
nicholas-j-fuentes-vs-bronze-age-pervert.120306,
nicholas-j-fuentes-vs-bronze-age-pervert.120306,2
nicholas-j-fuentes-vs-bronze-age-pervert.120306,3
nicholas-j-fuentes-vs-bronze-age-pervert.120306,4
Kind of stupid but seems to work:
Code:
 sed s/,/\\t0/ threads.txt | sort -r | rev | uniq -f1 | rev | sed s/\\t0/,/
 
If it's comma delimited why not just throw it all in a spreadsheet and do it that way? If this isn't a one-off thing why narrow yourself to shell scripts?
eg in python this would be trivial
I mostly use computers as a way to keep sharp mentally as I age. It would be relatively quick and painless to use something specifically made for the task, but what's the fun in that?

It actually was a one off thing this time because I have little to no interest in keeping track of most of the things I archive. I installed csvkit a few days ago and was playing around with it and that's how it ended up in that format.
 
Looks like watching some vids on Mental Outlaw didn't help much. Right now I got Rufus to prepare a disk for Linux download, unfortunately I don't know which linux distro to use (mainly gaming but other amenities are a bonus). Got Mint since Im a newfag on Linux but I'm also planning on downloading Arch.

So the question to every autist down there, which do I pick?
 
Back