Results 182 comments of Atrate

Workaround for keyboard shortcut issues for `i3` specifically: Define a "passthrough" mode that you activate whenever you want to use the AppVM that requires duplicated shortcuts. ``` # Passthrough mode...

The implementation could be re-used for #13755

How do you propose `KEY_PLAYPAUSE` to be implemented? `dom0` (or `dom0` + `sys-audio`) would somehow have to guess which VM media is playing in and route the event there, which...

So what you're proposing is for the implementation of user-friendly "SSH over qrexec"? (Just trying to clarify as I'm not fully sure). Another useful thing to use this for could...

Why does your module repo have a zip file in it?

If you want this module to be included in MMAR, you'll have to follow the standard Magisk module format. This means no `.zip` in the repo, as it will get...

``` # Print to Magisk installer UI ui_print "Starting Minecraft Font Module installation" # Module paths TTF_SRC="$MODPATH/Minecraft.ttf" FONTDIR="$MODPATH/system/fonts" # Check if Minecraft.ttf exists if [ ! -f "$TTF_SRC" ]; then...

Yes. Why create the directory in the script and not just have $MODPATH/system/fonts in the github repo immediately?

I guess what I meant is why not ship `Minecraft.ttf` in there, but after reading the code more thoroughly I see why you decided to do it this way. One...