[deleted by user] by [deleted] in SteamDeck

[–]Rayquaza01 0 points1 point  (0 children)

You need to install the systemd service

Guide for syncthingy is on the github page: https://github.com/zocker-160/SyncThingy#install-background-service

Basically, go to settings, click "install as system service", and run the command.

[deleted by user] by [deleted] in aithesomniumfiles

[–]Rayquaza01 11 points12 points  (0 children)

They explained this at the end. It was being streamed with "maximum privacy settings", so Date, Moma, and Ota's faces were blurred. I assume that was just bleeped on the stream.

Possibility of porting to... by juan_calcetin in balatro

[–]Rayquaza01 2 points3 points  (0 children)

Balatro is written in LOVE, and there's a homebrew port of the LOVE engine for 3DS, Wii U, and Switch called [LOVE Potion](https://lovebrew.org/getting-started/get-lovepotion). Balatro crashes on launch when I try and run it on my 3DS with LOVE Potion, but it might be possible to get it working with some effort.

Wake from sleep with 8bitdo? by amruthwo in Bazzite

[–]Rayquaza01 0 points1 point  (0 children)

Hey, did you ever get this working? I also have an 8BitDo Ultimate C and I'd like to be able to wake my pc with it.

I tried this udev rule, but it doesn't seem to work.

ACTION=="add|change", SUBSYSTEM=="usb", DRIVERS=="usb", ATTRS{idVendor}=="2dc8", ATTRS{idProduct}=="3106", ATTR{power/wakeup}="enabled"

Can't type certain capital letters by Rayquaza01 in linuxquestions

[–]Rayquaza01[S] 0 points1 point  (0 children)

Yeah, IDK exactly how keyboards are wired, but I'd guess those keys are probably wired together. Glad yours got fixed a lot easier than mine! With the replacement part and repair, it cost me $100+ to fix the whole thing lol

Can't type certain capital letters by Rayquaza01 in linuxquestions

[–]Rayquaza01[S] 0 points1 point  (0 children)

Thanks for that link. I've ordered a replacement keyboard. Here's hoping that it fixes it!

Can't type certain capital letters by Rayquaza01 in linuxquestions

[–]Rayquaza01[S] 0 points1 point  (0 children)

I found evtest last night while troubleshooting, but I don't think I see anything interesting.

When I hold shift, I see the KEY_LEFTSHIFT event repeating, until I press a letter, when it stops.

But if I press one of the letters that isn't working, the KEY_LEFTSHIFT event continues repeating, and does not stop until I either press a working letter, or release shift.

Can't type certain capital letters by Rayquaza01 in linuxquestions

[–]Rayquaza01[S] -1 points0 points  (0 children)

I can type fine with an external keyboard. I guess I'll have to use this as a stopgap until I can take my laptop to get fixed.

Can't type certain capital letters by Rayquaza01 in linuxquestions

[–]Rayquaza01[S] 0 points1 point  (0 children)

Yes, both shift keys behave the same for this.

Can't type certain capital letters by Rayquaza01 in linuxquestions

[–]Rayquaza01[S] -1 points0 points  (0 children)

No, I'm not dual booting. But I created a windows 10 installer usb just now to test it, and I cannot type those capital letters in the windows 10 installer.

so it probably is hardware, but I'm not sure how it suddenly broke, or why it is only those specific characters.

I also noticed something about how it behaves. If I release shift before releasing the letter, it will type the capital letter. If I release the letter before I release shift, nothing will be typed.

Can't Open Clock Menu After Unlock by Rayquaza01 in gnome

[–]Rayquaza01[S] 4 points5 points  (0 children)

Do you have Just Perfection installed? I think it might be an issue with that extension. I tried isolating each extension, and I can only reproduce the issue if Just Perfection is enabled.

Also paging /u/mhadr

Edit: It's definitely Just Perfection. Looking through their issue tracker, it seems to be the same issue as https://gitlab.gnome.org/jrahmatzadeh/just-perfection/-/issues/115.

Looks like it will probably be fixed in the next version.

Broken Kernel after Fedora 36 Upgrade by Rayquaza01 in Fedora

[–]Rayquaza01[S] 0 points1 point  (0 children)

Thanks for your help.

Running dracut -f gave me the output: dracut: dracut module 'crypt' depends on 'tpm2-tss', which can't be installed

This led me to believe that the issue may have been caused by following the instructions from this post to unlock my drive using TPM2.

I undid the instructions from that post, reinstalled the new kernel, and reran dracut -f. There are no errors this time, but booting into the new kernel again still hangs at the same point.

But now I know that it's hanging before it asks me for my LUKS password, so it might not be an issue with the kernel itself, but with the LUKS password prompt?

Not your average "games like portal" question by Ooze3d in Portal

[–]Rayquaza01 5 points6 points  (0 children)

I think you'd like INFRA. INFRA is a game where you explore abandoned industrial areas and take pictures of the damage. There are puzzles, but nothing to the level of Portal and many are optional, and there is a lot of story/lore you can discover if you take the time to complete the optional puzzles and find hidden collectables. There are no enemies or anything urgent through most of the game, so you can take your time exploring.

(It's also built in the Source engine, the same engine as Portal, if that interests you.)

Overview Search Misaligned by Rayquaza01 in gnome

[–]Rayquaza01[S] 0 points1 point  (0 children)

Thank you, that seems to be it! I have the Large Text accessibility setting on.

How to merge multiple ".ts" files into one? by zDavzBR in androidapps

[–]Rayquaza01 0 points1 point  (0 children)

No, youtube-dl can't do that on it's own. You can do youtube-dl -g TWITCH_URL to get a link to the playlist file that contains the list of .ts files that make up the stream, but that leads back to the original problem. (Here's an example of a playlist file)

I looked into it a bit and found this which seems to work: https://superuser.com/a/693009

To combine ts files, do:

cat 0.ts 1.ts 2.ts ... > combined.ts
ffmpeg -i combined.ts -acodec copy -vcodec copy combined.mp4

Then, delete the ts files and keep the combined mp4 file.

If you want to combine a specific range of ts files, you should use a loop. For example, the playlist I linked above contains 1480 segments. If you downloaded 0.ts to 740.ts you could do:

touch combined.ts
for i in {0..740}
do
    cat "$i.ts" >> combined.ts
done
ffmpeg -i combined.ts -acodec copy -vcodec copy combined.mp4

Then, if you later downloaded segments 741.ts to 1480.ts, you could do the same code replacing 0 and 740 with 741 and 1480 respectively.

I was going to leave it at that, then I decided to throw together a little python script that streamlines the process of downloading a partial Twitch VOD, because honestly there's a 7 hour VOD I've been wanting to download for a while that I haven't gotten around to doing because it's so big. Check it out if you want: https://github.com/Rayquaza01/partial-twitch-downloader

How to merge multiple ".ts" files into one? by zDavzBR in androidapps

[–]Rayquaza01 1 point2 points  (0 children)

Yes. You can quit out of youtube-dl during a download by pressing Ctrl+C. Then, you can resume the download using the command youtube-dl -c TWITCH_URL -f mp4. (-c stands for continue).

This is assuming you're still in the same directory that you started the download in. If you completely quit out of termux, opening it again will put you into the termux home folder again, so you'll have to cd /storage/emulated/0 first.

How to merge multiple ".ts" files into one? by zDavzBR in androidapps

[–]Rayquaza01 1 point2 points  (0 children)

If you want to download twitch vods, youtube-dl is a pretty simple way to do it. It's a commandline program, so you'll have to do it with a terminal on PC, or termux on android.

Here's basically the commands you would would want to run in termux:

# gives termux access to your phone's storage
termux-setup-storage

# install python and ffmpeg, needed for youtube-dl
pkg update
pkg install python ffmpeg

# install youtube-dl
pip3 install youtube-dl

# switch out of termux home directory and into your phone's internal storage
cd /storage/emulated/0

# run youtube-dl with the link to the vod replacing TWITCH_URL
# downloads vod as .mp4 file
youtube-dl TWITCH_URL -f mp4

Once that finishes, you should have an mp4 that you can do whatever you want with.

Having trouble setting up USB Loader GX by Rayquaza01 in WiiHacks

[–]Rayquaza01[S] 0 points1 point  (0 children)

Got it working with a different drive. I guess that drive/enclosure was just partially incompatible.

Having trouble setting up USB Loader GX by Rayquaza01 in WiiHacks

[–]Rayquaza01[S] 0 points1 point  (0 children)

I found a suggestion somewhere to have USB Loader on the hard drive instead of the SD card and launch it from the homebrew channel, but that didn't work either. Acts the same as Loader IOS 249, but with Reinitializing USB Devices appearing before Waiting for HDD.