This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/sh | |
# Execute from Termux app, running as root results no sound. | |
# Must have pulseaudio and termux-x11. | |
# Must have root access. | |
if [ "$(id -u)" -eq "$TERMUX_APP__UID" ]; then | |
### Start pulseaudio | |
pulseaudio --start --load=" \ | |
module-native-protocol-tcp auth-ip-acl=127.0.0.1 \ | |
auth-anonymous=1" --exit-idle-time=-1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
base | |
base-devel | |
linux-zen | |
linux-zen-headers | |
linux-firware | |
sof-firware | |
git | |
nano | |
python | |
plasma-meta |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ISO download link : https://files.rg-adguard.net/file/19a36b7b-269b-ebf8-105b-a375f70b7ae2 | |
ISO file name : en-us_windows_10_enterprise_ltsc_2021_x64_dvd_d289cf96.iso | |
ISO file MD5 : b5a7be560dbd73619945129e52be1b5f | |
### Installing drivers (driverpack.io) | |
### Activating windows (massgravel) | |
### Disabling visual effects (personalization) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#mkfs.ext4 /dev/nvme0n1p4 | |
#mount /dev/nvme0n1p4 /mnt | |
debootstrap --variant=minbase \ | |
--exclude="snapd,cloud-init,landscape-common,popularity-contest,ubuntu-advantage-tools,unattended-upgrades,netplan,networkd" \ | |
jammy /mnt http://archive.ubuntu.com/ubuntu | |
echo ubuntu >/mnt/etc/hostname | |
echo 127.0.0.1 >>/mnt/etc/hosts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Import the Awesome WM libraries | |
local awful = require("awful") | |
local beautiful = require("beautiful") | |
local gears = require("gears") | |
-- Set the theme | |
beautiful.init(gears.filesystem.get_themes_dir() .. "default/theme.lua") | |
-- Remove titlebars, window topbars, and spacing | |
beautiful.titlebar_height = 0 |