selinux, zstd, flatpak, thinkfan, thinkpad t430, thinkpad t480, tailscale, vscode, nix, rpm-fusion, disable network connectivity check, battery charge threshold, gnome, nautilus, ptyxis-terminal, boxes, celluloid, declarative system changes
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
| VERSION=19.07.7 | |
| # Download imagebuilder for R7800. | |
| aria2c -c -x4 -s4 https://downloads.openwrt.org/releases/${VERSION}/targets/ipq806x/generic/openwrt-imagebuilder-${VERSION}-ipq806x-generic.Linux-x86_64.tar.xz | |
| # Extract & remove used file & cd to the directory | |
| tar -xvf openwrt-imagebuilder-${VERSION}-ipq806x-generic.Linux-x86_64.tar.xz | |
| rm openwrt-imagebuilder-${VERSION}-ipq806x-generic.Linux-x86_64.tar.xz | |
| cd openwrt-imagebuilder-${VERSION}-ipq806x-generic.Linux-x86_64/ |
Universal Blue Kinoite or: How I Learned to Stop Worrying and Love the Immutable Linux Desktop & Flatpaks updated 04/30/23
~Written with love & mostly on my "Steam Desk" Steam Deck + Steam Deck Dock on my 4k TV on my beanbag.
TLDR: How to get an Immutable Fedora KDE Plasma Desktop setup for gaming on Linux. Brought to you by Universal Blue Project.
💬 It's (not just) Fedora Kinoite/ Fedora Silverblue with extra steps!
Tailscale is a heavy program, you most likely need to configure ex_root to be able to install it.
https://openwrt.org/docs/guide-user/additional-software/extroot_configuration
VERSION=1.2.6 # Version as of Aug 11, 2025
wget -O luci-app-tailscale.ipk https://github.com/asvow/luci-app-tailscale/releases/download/v${VERSION}/luci-app-tailscale_${VERSION}_all.ipk
opkg update
opkg install ./luci-app-tailscale.ipk
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
| # make sure you have Selenium installed: https://pypi.org/project/selenium/ | |
| # make sure you have the latest chromedriver installed: https://googlechromelabs.github.io/chrome-for-testing/ | |
| # save this file somewhere, change the paths as you need and make it autostart. enjoy. | |
| from selenium import webdriver | |
| from selenium.webdriver.chrome.options import Options | |
| from selenium.webdriver.chrome.service import Service | |
| import os | |
| import time |