McSwindler

Results 7 comments of McSwindler

I had to do some of the configuration in desktop mode, but I was able to get a game "playable" To open in desktop mode, run the command: `flatpak run...

~~It's probably better to merge these 2 extractors since they are essentially the same but with different domain names. I'm just not sure how to architect that as this is...

I went with the `*BaseIE` method and believe I've taken care of everything. Since different `_NETRC_MACHINE` values are needed, and it doesn't look like the url is passed through any...

For what it's worth, I did a build and flash using WSL. Docker desktop is able to integrate with WSL 2: https://docs.docker.com/desktop/windows/wsl/ And I used [usbipd](https://learn.microsoft.com/en-us/windows/wsl/connect-usb) to attach the device....

Do you know if you have the 16 micro-step board? If so, you can try running the script with the argument `-s 114.28` This will set the steps/mm to the...

I was able to get this working. Here is my polkit rules file `/etc/polkit-1/rules.d/49-sshd-nopassword.rules` ``` polkit.addRule(function(action, subject) { if (action.id == "org.freedesktop.systemd1.manage-units" && action.lookup("unit") == "sshd.service" && subject.user == "deck")...

I ran into this same issue, and found a solution for myself by building a custom native library. # What the issue is Alpine uses musl instead of gnu. The...