- 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| # This file is part of systemd. | |
| # | |
| # systemd is free software; you can redistribute it and/or modify it under the | |
| # terms of the GNU Lesser General Public License as published by the Free | |
| # Software Foundation; either version 2.1 of the License, or (at your option) | |
| # any later version. | |
| # | |
| # Entries in this file show the compile time defaults. Local configuration | |
| # should be created by either modifying this file (or a copy of it placed in | |
| # /etc/ if the original file is shipped in /usr/), or by creating "drop-ins" in |
| 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| .-------------------------: puppy@puppy | |
| .+=========================. ----------- | |
| :++===++==================- :++- OS: CachyOS x86_64 | |
| :*++====+++++=============- .==: Kernel: Linux 6.16.7-2-cachyos | |
| -*+++=====+***++==========: Uptime: 3 mins | |
| =*++++========------------: Packages: 2523 (pacman), 241 (flatpak) | |
| =*+++++=====- ... Shell: fish 4.0.8 | |
| .+*+++++=-===: .=+++=: Display (PHL0000): 1920x1080 @ 1.25x in 32", 60 Hz [External] | |
| :++++=====-==: -*****+ DE: KDE Plasma 6.4.5 | |
| :++========-=. .=+**+. WM: KWin (Wayland) |
| 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.'); | |
| } | |
| } |