Skip to content

Instantly share code, notes, and snippets.

View pparaxan's full-sized avatar
:shipit:
I just talk with computers.

xan! pparaxan

:shipit:
I just talk with computers.
View GitHub Profile
@pparaxan
pparaxan / README.md
Last active March 3, 2026 22:33
How to [unlock/root/flash a GSI] for your LG Stylo 6.

last updated 29/7/25

^ NOTE: LG has shutdown their servers that hosted the firmware, making it very difficult to locate a firmware file for your specific model. However, some members in The Bootloader Locksmiths Discord server may have it still on their computer, which in that case, ask.


ATTEMPT THIS AT YOUR OWN RISK, PLEASE READ THE DAMN FULL TUTORIAL BEFORE YOU START. I AM NOT RESPONSIBLE FOR ANY BRICKED DEVICES! THIS PROCESS IS NOT FOR THE INEXPERIENCED.

Download these stuff first

@pparaxan
pparaxan / README.md
Last active July 29, 2025 23:03
How to make your microphone & desktop audio be one [output] source

Create a new shell script (.sh) with any name you prefer.

Insert the following
#!/bin/bash
pactl load-module module-null-sink sink_name=microphone_and_desktop_audio
pactl load-module module-loopback source=<your_default_sink>.monitor sink=microphone_and_desktop_audio
pactl load-module module-loopback source= sink=microphone_and_desktop_audio
@pparaxan
pparaxan / Application-Audio-To-Virtual-Microphone.md
Created August 8, 2024 07:22
Convert Application Audio to [Virtual] Microphone Input

Create a new shell script (.sh) with any name you prefer.

Insert the following (Click Me)
#!/bin/bash
pactl load-module module-null-sink sink_name="VirtualOutputFix" sink_properties="device.description='OutputFix(dont_use)'"
pactl load-module module-null-sink sink_name="VirtualInput" sink_properties="device.description='VirtualSource'"
pactl load-module module-remap-source master="VirtualInput.monitor" source_name="VirtualSource"
@pparaxan
pparaxan / Literal_Microphone_Connected_To_Aux.md
Created August 8, 2024 07:20
[Shure] Microphone Connected to Computer's aux port

You should have alsa-utils installed before continuing


Using your preferred text editor, open the file /etc/modprobe.d/alsa-base.conf.

Add the following line to the file:

Click Me :3 AMD