A typical bike-riding leftist urbanite who also happens to be a hockey-crazy Western Canadian.

  • 0 Posts
  • 46 Comments
Joined 2 years ago
cake
Cake day: June 20th, 2023

help-circle
  • If it’s through steam, I wouldn’t expect there to be any issues.

    Just make absolute certain you have a backup copy of any save files before deleting your current OS, for the sake of your relationship… I can only imagine how many hours someone might have put into a game that came out in 2009. Definitely not speaking from personal experience haha




  • It definitely could be a hardware failure, but if the system still boots fine, it’s probably not that. Based on the symptoms, I think you might have clobbered your PATH variable. This can happen when you do something like PATH=/new/path/ because the variable gets overwritten. You have to remember to preserve the existing value with PATH=$PATH:/new/path/. Don’t worry, this is reversible.

    The best thing to do would be to fix or temporarily remove the commands you used to set PATH in whatever profile or .rc file it’s in. You can run whatever text editor you have installed by specifying the path to the executable. I don’t know exactly where vim is on Fedora, but it’s probably something similar to /sbin/vim or /usr/bin/vim. Keep trying locations until you find the right one. Then log out and back in and it should be fixed.

    You might also be able to login as root and use the shell normally to fix the problem, depending on which file contains the faulty command. Hopefully this helps.













  • What this story reveals is the stunning level of ignorance amongst Americans at large. This is a bona fide fascist manifesto, published by the handlers of the current leading presidential candidate, over a year ago. Nothing rattles me to my core quite like being confronted by the harsh reality that a lot of people out there are just going about their lives like everything is fine.

    These are the people we need to organize with in order to ― at this point ― basically survive, so I’m very glad something was able to spur them into some level of action before election day.

    That said, and please excuse the momentary lapse into doomerism, but if we have to rely on Hollywood and celebrity culture to bring something of this magnitude into public awareness, we might be more thoroughly cooked than it was previously thought to be possible.



  • A really common issue with sway is that it doesn’t run as a login shell, so none of your .profile or other environment settings get sourced when you login. I think that might be the problem here.

    Try closing your sway session, then login to a tty and run sway. If the qt themes work properly then it’s definitely an environment issue.



  • Fellow Arch user here (btw). It’s exactly the same as building AUR packages. Clone a git repo containing a PKGBUILD, use makepkg to build it, and pacman to install it. The nice thing is you can host a repo of your built packages and install them on other systems really easily. The big downside is that dependency management is not automated, so it will take some time and annoyance to map out what packages you need to build and in what order, if you want a fully source-bootstrapped system.