The Linux Thread - The Autist's OS of Choice

  • Want to keep track of this thread?
    Accounts can bookmark posts, watch threads for updates, and jump back to where you stopped reading.
    Create account
Using linux OSes makes me wanna fucking rage bro. Just dropped Fedora for Ubuntu and because I have HDMI->displayport cable adapters only one of my monitors can go to 100hz, others are at 60hz. Fuck my nigger chud life.
What are you using on it? I'm guessing just gnome? Since those are both gnome distros (primarily at least).

If you just got ubuntu set up, and didn't put in a ton of work, I would say try mint, or something else. Although, xorg doesn't really make dealing with different monitors, with different refresh rates easy.


Im not sure how much gnome actually exposes to the end user for configuring that kind of thing though, since I've never even tried using more than one monitor. If it's as minimal as all their other settings tend to be I would at least say maybe kde or something could do better. But then again, idk what the actual cause of the problem is, like why the hdmi to display port adapter would mean only a single monitor can have a higher refresh rate.
 
was that not a problem before?
it just werked on windows.

To clarify, all my monitors are 100hz, just for some reason on Ubuntu only one of them can go to 100hz before the rest start disabling themselves/going back down to 60hz. They're all the same monitor model.
 
Although, xorg doesn't really make dealing with different monitors, with different refresh rates easy.
I disagree. It's a single xrandr command per display to set resolution, refresh rate, and enable tearfree to prevent screen tearing. Something like
xrandr --output HDMI-1 --mode 1920x1080 --rate 120 --set TearFree on
xrandr --output DisplayPort-1 --mode 1920x1080 --rate 60 --set TearFree on
Then just stick the commands in a bash script that runs on login.
 
I disagree. It's a single xrandr command per display to set resolution, refresh rate, and enable tearfree to prevent screen tearing. Something like
xrandr --output HDMI-1 --mode 1920x1080 --rate 120 --set TearFree on
xrandr --output DisplayPort-1 --mode 1920x1080 --rate 60 --set TearFree on
Then just stick the commands in a bash script that runs on login.
Wincucks coming over to linux who already have their autism triggered by something being different, likely stimming to sooth themselves will surely find this very easy and have no problem with it.
 
I just set it up in the Nvidia control panel and tell it to copy the settings to Xorg.conf
 
KDE is finally being inclusive to Mental Outlaw and the three other melenated users of Linux.
View attachment 8578314
That reminds me of how in the 2000s-2010s you would hear almost every year or so that some random school of niggers in Africa were being taught to use Linux. There were even some distro specific pushes for it like Emmabuntus. It seems to have died off since then AFAIK, but I still wonder how much was wasted on this nonsense
 
That reminds me of how in the 2000s-2010s you would hear almost every year or so that some random school of niggers in Africa were being taught to use Linux. There were even some distro specific pushes for it like Emmabuntus. It seems to have died off since then AFAIK, but I still wonder how much was wasted on this nonsense
Likely so much ewaste because the hardware drivers were never merged into the kernel
 
Wow. I thought I needed to do this in my Xorg conf. Today I learned. Thank you for sharing.
I'm always eager to share about tearfree. Trannyland users claiming that X will always have tearing in multimonitor setups with varied refresh rates was the only reason I went through the pain of switching to wayland (and then switching back).
 
made these quickly



1771635128965.png
 
so whats the best rss reader for linux?
people ask me this all the time and the only answer i can come up with is newsboat, but i found myself using fucking brave news
 
I wrote a tiny little shell script to help upload videos I've clipped. I figured I would share it because it's something that really makes my life easier, and I figured others would appreciate it.

What the ffmpeg command does is essentially put the video down to 720p if it's higher, and reduces the quality it's encoded at. Doing this most of the time cuts the size of the video in half. Even more importantly it cuts down the upload time by much more than half. Like it's a night and day difference. The speed improvement is more noticeable than I would have ever guessed.

The way the script is designed to work. Is you put all the clips you want to shrink in a directory. cd into it. then run the script. It loops over all the files, runs the ffmpeg command. Which outputs the processed file with an "s-" in front of the original name. This is to avoid file name collisions. I figured it's best to keep the input file around in case something goes wrong, or if people just want to have it for whatever reason.

Heres the script itself. I thought I might as well throw it in the linux threads since it's a shell script afterall. But I will probably throw it up somewhere where not autists might see it and benifit from it.

Bash:
#!/bin/sh

for f in *.mp4; do
  ffmpeg -i "$f" -vf scale=-1:720 -c:v libx264 -crf 28 s-"$f"
done

It's so simple it might as well be a one liner. It's a for loop in sh so obviously it's more than one line, but it's about as simple as a loop can be.

Oh, and obviously someone could change the file extention I have there to something else. Or remove the file extension all together, and just leave the * to work on any file in the cwd.
 
so whats the best rss reader for linux?
people ask me this all the time and the only answer i can come up with is newsboat, but i found myself using fucking brave news
idk, most rss readers are crossplatform solutions and generally do the same thing. I'd expect people in the linux sphere to gravitate more towards self-hosted solutions like ttrss/freshrss but outside of those every other reader is interchangeable in terms of use (never use inoreader or feedly though, they are niggerware). Basically take your pick and go crazy
 
I've turned those shader precaching settings off for years and havent seen the popup or had issues :)
I seriously wonder how much actual impact all the shader precaching has, or if anyone's even done a comparison/studied it at all. Currently it's taking up 15 entire GB of my disk space just for cache. How much of an in-game speedup is 15GB worth?
 
I would presume it's fairly stable at the moment as it's only forking the components needed for X11 support and pulling from upstream the rest. It's basically just fixing things that are broken, with the occasional new feature like Xnamespaces support of you're using Xlibre.
I'll wait a couple months since at first it was just a fork for kwin, now it's whole Plasma.

I seriously wonder how much actual impact all the shader precaching has, or if anyone's even done a comparison/studied it at all. Currently it's taking up 15 entire GB of my disk space just for cache. How much of an in-game speedup is 15GB worth?
Cache aims to eliminate any stutters when you encounter new shader, say a rare weapon particle for example. It's just how Vulkan and DX12 does things. It can be invalidated just because of driver update of if you swap GPU.

Great, I can't enter archwiki because of troonubis, thankfully I've got the packaged version.
 
Back
Top Bottom