- Joined
- Dec 16, 2025
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Enrico was the only person even trying to improve X11. They are talking about rolling back to February 2024 because when they deleted all of Enricos commits in their hissy fit they complete fucked up the repository and they can't get the server to compile unless they roll back to before all the deleted commits were made.you mean undo? reading that I thought it would be the opposite of what it was.
Either way. I've seen the people that stuck around with xorg complain so much about the xlibre guys commits. But using xlibre, and using xorg. Xlibre has tended to work better for me. The only thing I've noticed with xlibre is you will get abi warnings for certain things. But I haven't noticed it having any actual effect.
Fucking idiots.Enrico was the only person even trying to improve X11. They are talking about rolling back to February 2024 because when they deleted all of Enricos commits in their hissy fit they complete fucked up the repository and they can't get the server to compile unless they roll back to before all the deleted commits were made.
Who the fuck cares? His opinion on the matters is irrelevent in every meangful way. Havign Adobe software on Linux will definitly help, and if they figure this out maybe they can figure out other professional software.Epic CEO Tim Sweeney replies to a post about Linux being compatible with Adobe software:
View attachment 8451109
I mean, he's not entirely wrong, Adobe is Oracle tierWho the fuck cares? His opinion on the matters is irrelevent in every meangful way. Havign Adobe software on Linux will definitly help, and if they figure this out maybe they can figure out other professional software.
H can be sort of right and still a raging, butthurt faggot.I mean, he's not entirely wrong, Adobe is Oracle tier
I say if you're willing to do a manual install then go for it.should I just use arch I've been using mint for a minute but I want better compatibility with apps
Compatibility with what apps?should I just use arch I've been using mint for a minute but I want better compatibility with apps
Probably not.should I just use arch I've been using mint for a minute but I want better compatibility with apps
#!/bin/bash
WINEPREFIX=$HOME/Desktop/PKHeX wine $HOME/Desktop/PKHeX/PKHeX.exe
#!/usr/bin/env bash
run_pkhex() {
local PREFIX="$1"
WINEPREFIX="$PREFIX" wine "$PREFIX/PKHeX.exe"
}
run_pkhex "$HOME/Desktop/PKHeX"
#!/usr/bin/env bash to make the script more "portable" rather than just using plain-old #!/bin/bash. Logically, I know that's true because you're invoking env to locate Bash, and who knows? Maybe I'll eventually daily drive FreeBSD where /bin/sh is the default shell and Bash will always install into /usr/local/bin through the Ports collection since it's an external package and not part of the base system. As it stands? I'm daily driving Fedora, Bash is the default shell, no one who runs PKHeX on Linux ever uses the same directory structure as any other jack-off because we all do things ever so slightly different, so like... we're really splitting hairs on "portability" here.run_pkhex() { is the start of the function as noted by the "()" followed by the open curly brace. You could literally call this function anything, even cheater_cheater_pumpkin_eater() { as long as you're consistent."$HOME/Desktop/PKHeX" from the final line and passes it into the function as a local variable. Probably could've done that cleaner, probably could've wasted a lot less time, and I'm sure some maladjusted terminally online dork like me that reads this at some point down the line will tell me "oi m8 u could've just gone with local PREFIX="$HOME/Desktop/PKHeX" directly inside the function and spared yourself the headache." Hindsight's 20/20. What can you do?WINEPREFIX=$HOME/Desktop/PKHeX wine $HOME/Desktop/PKHeX into WINEPREFIX="$PREFIX" wine "$PREFIX/PKHeX.exe" Huzzah... I shortened the command and all it took was bashing my head against the wall over how to declare a stupidly inconsequential variable.$HOME/Desktop/PKHeX go but at the end of the script after I call the function?#!/usr/bin/env bash
set -e
dnf_updater() {
sudo dnf --refresh update -y
}
flatpak_updater() {
flatpak update -y
}
main() {
dnf_updater
flatpak_updater
}
main
set -e is just to make sure your shit stops if you get a failure somehow. On Fedora? That can happen as easily as RPM Fusion being a few hours behind with the latest mesa-freeworld update while the Fedora repos themselves are already pushing out the latest kernel.dnf_updater, flatpak_updater, and main Within the first two functions are the cookie-cutter commands I normally execute manually, and then main just chains the two together. It looks prettier, the curly braces make me feel like I'm programming like some 1337 H4X0R, but like... my first instinct was to write something as below#!/bin/bash
sudo dnf --refresh update -y
flatpak update -y
I think a guide for bash from 2014 is probably still going to pretty much hold up today.Bash Scripting guide that hasn't updated since 2014.
If you really want portability. Use #!/bin/sh The scripts you are writing could definitely run with sh instead of bash. Also if you have dash linked to /bin/sh instead of bash you will get a performance improvement basically for free.You invoke the shebang with#!/usr/bin/env bashto make the script more "portable" rather than just using plain-old#!/bin/bash. Logically, I know that's true because you're invokingenvto locate Bash, and who knows? Maybe I'll eventually daily drive FreeBSD where/bin/shis the default shell and Bash will always install into/usr/local/bin
time=$(date "+%m.%d.%Y")
Contrary to popular belief, since maybe 2017 I've had basically no issues with arch whatsoever on any system. Up to that point you might completely fuck over your system when upgrading basically anything, but that is no longer the case I'd say. As long as you can follow the very simple instructions in ArchWiki to do a manual install, and as long as you dont mind reading an article here and there (on archwiki, again) when you first start out to understand how to do specific things, then you should be fine.should I just use arch I've been using mint for a minute but I want better compatibility with apps
No the NAND still does not work. Same error as before.One of the most obscure hardware platforms ever to be sold. Undocumented and lost to time. FOUND and reverse engineered. By someone who did not even know what a VMLINUX was 3 months ago or what a BUS was. AND got it running in QEMU.




Another thing to think about is all these commands can sit in a file at ~/.bashrc and when they get sourced, you can run the procedures directly from the shell, like:This is just for the sake of learning, and a big part of learning is doing things in a more arbitrarily complex way to accomplish simple tasks just to make you feel like you're expanding your horizons. Anyway, that's all I have to say.
$ dnf_updaterI have greatly enjoyed your autistic odyssey, and hope you continue to keep us up to date on your journey. Stay strong!But if you think this means im calling it quits or saying "I need to take a break" or "I need to find a better hobby" you are surely mistaken.