- Install Termux from Github: https://github.com/termux/termux-app/releases
- Download the apk and install it -> Note that installing termux from Play Store is highly discouraged.
pkg update| I have managed to get the alsa-plugins-a52 to output over HDMI on bazzite. | |
| Problem 1: TV's like Samsung does not support LPCM 5.1 over HDMI EARC. | |
| Problem 2: Many recievers in use today only support HDMI ARC, which means only PCM 2.0 / Dolby Digital or DTS. | |
| How to fix on Bazzite so you can enjoy surround sound in your games in your home theater setup : | |
| 1. Install alsa-plugins-a52 | |
| sudo rpm-ostree install alsa-plugins-a52 |
pkg update| import os | |
| import subprocess | |
| from random import sample | |
| from uuid import uuid4 | |
| from pathlib import Path | |
| def create_filelist(folder, init_file, file_pattern): | |
| files = sorted([f for f in os.listdir(folder) if f.startswith(file_pattern) and f.endswith('.m4s')]) | |
| return [f"{os.path.join(folder, init_file)}"] + [f"{os.path.join(folder, file)}" for file in files] |
| function autoScrollToLastFollower() { | |
| const lastFollower = document.querySelector( | |
| 'div[data-e2e="follow-info-popup"]>div:last-child>li:last-child' | |
| ); | |
| if (lastFollower) { | |
| lastFollower.scrollIntoView(); | |
| } else { | |
| console.info('No follower found. Make sure you are on the following page and opening list of followers.'); | |
| } | |
| } |