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
| # 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 |
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
| 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" |