Skip to content

Instantly share code, notes, and snippets.

View nlxdodge's full-sized avatar
🔮
Astro fanboi

NLxDoDge nlxdodge

🔮
Astro fanboi
View GitHub Profile
@nlxdodge
nlxdodge / update.sh
Created June 11, 2026 08:32
Update apps for LG TV from GitHub
# Update apps from GitHub
tv-update() {
local repos=(
"webosbrew/youtube-webos"
"Moonfin-Client/Smart-TV"
)
local tmp_dir="/tmp/tv-updates"
mkdir -p "$tmp_dir"
cd "$tmp_dir" || return 1
@nlxdodge
nlxdodge / windows_install.ps1
Last active July 24, 2026 12:55
Windows 11 Install Script with Winget
Write-Host "Starting installation of applications..." -ForegroundColor Green
Write-Host "Installing Scoop..."
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
$wingetArgs = @(
"--silent",
"--accept-package-agreements",
"--accept-source-agreements"