AldinTheMage

joined 2 years ago
[–] AldinTheMage@ttrpg.network 4 points 6 days ago

I use LibreWolf, and I do have issues with a few sites (my local utility company's bill pay only works on chromium), but I still refuse to use a chromium based browser except for those specific sites.

It is inconvenient, but it can still make a difference. If sites that have chromium only functionality see that enough FireFox users are trying to use the site, they may update it. I know web devs check those kinds of metrics.

[–] AldinTheMage@ttrpg.network 3 points 6 days ago

Someone at work made a "who on earth uses FireFox" comment recently, like it was some obscure and inferior / outdated software (our company includes FF as part of the standard image for both PC and Mac users). I did not go into my "why chromium is evil" rant, but I did tell them how to adjust their settings to fix some performance issues they were having with it. I'm pretty sure they still switched to Chrome.

[–] AldinTheMage@ttrpg.network 2 points 1 month ago

It's going to be a total re-install, so that depends on what kind of setups you have. Not really different than switching to/from another distro.

Bazzite ships with KDE, so you could likely copy your themes and customizations for that pretty easily.

Bazzite is fedora based, and doesn't use apt, but you can use distrobox like I mentioned in my post to get familiar ubuntu packages, if there are things that you need to be not flatpaks. You also can probably copy config files from non-flatpak apps into the flatpaks for most apps. I did this with my Cura configs. It may depend on the application.

Basically, I just backed up my user folder (~/) and pulled any configs out of there. You could just back up ~/.config and ~/.local but with ubuntu there are likely some things in a snap directory and such. Mainly ~/.config and ~/.local, but some applications may use other directories, like snap, etc.

[–] AldinTheMage@ttrpg.network 2 points 2 months ago

Roots of Chaos series is great and seems to fit these criteria. (The Priory of the Orange Tree, A Day of Fallen Knight, Among the Burning Flowers).

[–] AldinTheMage@ttrpg.network 9 points 3 months ago

It's not about the ads to buy things. That's part of it for sure, but it's more than that.

Google, Meta, Microsoft, etc. want your data, your habits, routines, opinions, etc, so they can influence the way you think and behave and understand the world.

There's a clip I saw recently of Peter Thiel saying they could never get people to vote for the things they want to do, so instead they are using technology to change things.

Even if you block ads, if you still use platforms owned by tech mega-corps, they have your data. Sure you might not see the targeted ads, and so you think you're coming out ahead, but you don't realize that every piece of content you see between the ads you've blocked is being filtered to influence the way you think about the world.

[–] AldinTheMage@ttrpg.network 2 points 4 months ago

That's awesome, I never knew that! And someone made a similar tool for Linux as well

[–] AldinTheMage@ttrpg.network 3 points 4 months ago (2 children)

I watched Jurassic Park again the other day.

"It's a Unix system, I know this!"

Nedry had a very custom window manager.

[–] AldinTheMage@ttrpg.network 4 points 4 months ago (1 children)

That one has been on my list for a bit. I read the Licanius trilogy by the same author and loved it.

[–] AldinTheMage@ttrpg.network 5 points 4 months ago (1 children)

Love that one! Going Postal, Mort, and Equal Rites are my favorites in the Discworld series so far (I haven't read all of them)

[–] AldinTheMage@ttrpg.network 3 points 4 months ago

That sounds amazing. I love Capaldi and had no idea he did audio books. I've also been wanting to read Watership Down.

[–] AldinTheMage@ttrpg.network 4 points 4 months ago

Just grabbed Among the burning Flowers from my local library. Really enjoyed the other roots of chaos books so I'm looking forward to this one.

I read most of the Bullet Journal Method and what I learned from that has been really useful. Also Mistborn is one of my favorite series, and the last 2 books of era 2 are great.

[–] AldinTheMage@ttrpg.network 3 points 4 months ago

Most of my space knowledge comes from Elite Dangerous lol. They used a lot of real star catalogs when making the galaxy and visually it's really good.

36
submitted 4 months ago* (last edited 4 months ago) by AldinTheMage@ttrpg.network to c/linux@programming.dev
 

I have an old laptop set up with mint (what I had a usb laying around for) and running foundryvtt with docker. That's all set up and working great, starts services on reboot, runs headless.

What I would like to do, mainly because I think it would look cool, is have a small CRT screen that I have plugged into the laptop via HDMI to display the performance status with htop, or docker output or something. I can do this with starting a terminal session with the other display plugged in, but this requires user interaction and all of that.

This side of linux is kind of new to me, so I am not sure what direction I need to start looking in. Is it possible to set up a service to run headless and output to a display in a way that automatically comes up if the device is rebooted? Or is it possible to modify my existing docker container to output logs to display?

Appreciate any input to help get me pointed in the right direction.

EDIT: Solved!

Thanks to everyone for pointing me towards getty, grub boot settings, and bash profiles - got a setup that I'm happy with.

I was able to disable the laptop monitor and enable the CRT by adding this to /etc/default/grub

# Disable laptop monitor (LVDS-1) and only output to CRT (HDMI-A-1)
GRUB_CMDLINE_LINUX_DEFAULT="video=LVDS-1:d video=HDMI-A-1:1024x768"

(don't forget sudo update-grub to apply)

I initially set it to 640x480, but display was better with higher res and large font size, which I scales up with sudo dpkg-reconfigure console-setup

I created a service account for this, and set up a systemd service to start getty on that account based on those docs

[Service]
Type=idle
ExecStart=
ExecStart=-/sbin/agetty --skip-login --noreset --noclear --autologin axies - ${TERM}![](https://ttrpg.network/pictrs/image/cf0ab3f3-9674-4578-a230-c8f3df7a7bdc.webp)

Then I added htop to the ~/.bash_profile for that user and... done!

Only thing is there is some overscan on the display and initially about 3 rows / cols were cut off on each side. I was able to adjust the CRT display itself to mostly mitigate this, so now only a bit is cut off and it's usable, but it's not perfect. I tried setting the margin in the video options in grub with margin_top, margin_left etc., as per these docs but that didn't work, even though I verified the resolution was applying correctly. But it is functional!

 

My distro of choice is Debian (I like their philosophy and it works great on my laptop) but I have an nVidia card in my desktop PC, and driver management was kind of annoying. Decided to try Kubuntu, which worked ok, but I didn't really love, and then I didn't update for a bit too long and had some repo issues trying to install updates. I didn't bother digging into what the fix would be, since I had been considering Bazzite for a while, as it has been talked about a lot for gaming.

Knowing literally nothing other than "Bazzite works out of the box with nVidia" I figured I'd give it a go. First off, I was surprised at the size of the image, and how long the install took. I did some reading about atomic distros and began to understand why things were set up that way. Seems pretty cool! I still don't love that as soon as I logged in on my fresh install, Steam opened up and asked for a log in, but that is what I signed up for with Bazzite, I guess. The nVidia drivers out of the box worked fantastic, as advertised, and I love a good KDE desktop, so it's not all bad.

Initially I was frustrated that some things weren't working in the flatpak versions of the app (couldn't get to my 3d printer using the .local address from the browser because flatpak has a bug with mDNS) and layering a package with rpm-ostree seems like overkill and not a good experience. Then I watched some videos on distrobox.

I can just distrobox create --image debian:latest debian-box and then use apt install for whatever packages I want, export them and use them as if they were natively installed on Bazzite??? And this works on any distro??? I have been using Linux exclusively for a few years (and on and off for more years), but I have been totally out of the loop with distrobox and atomic distros. This feels like the same level of magic I felt when I first dual booted Ubuntu back in the Windows Vista days. This seems like it will fix 99% of the issues I run into on Linux.

I know distrobox isn't exclusive to atomic distros, but I wouldn't have discovered it if not for Bazzite.

Anyway, none of this is really new info, but I just wanted to nerd out about it for a bit with people who will know what I'm talking about.

 

I started working on a solo notebook RPG after getting sucked into GnollHack on my phone ruined my progress on reducing screen time (also RIP Grindor, level 19 elf ranger, killed by Scorpius due to me not understanding illness mechanics😭).

I wanted something on paper that has a similar vibe (though this has nowhere near the depth). Just fighting monsters, exploring infinite dungeons, collecting loot and learning spells.

I have never written an RPG system before, but it was fun! I'm still finishing up development and making tweaks as I play, but it's finished enough to play test!

view more: next ›