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
param ( | |
[string]$exePath = "C:\Program Files\Apollo\sunshine.exe", | |
[string]$workingDirectory = "C:\Program Files\Apollo\", | |
[string]$sessionId = (Get-Process -PID $pid).SessionID, | |
# Path to PsExec | |
# You can download it from https://learn.microsoft.com/en-us/sysinternals/downloads/psexec | |
[string]$psexecPath = "D:\Tools\pstools\PsExec.exe", | |
# Adjust with the actual config files you want to start. | |
# e.g. if you have only one config, leave only the first entry. | |
[string[]]$exeParams = @( |
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
#Requires AutoHotkey v2.0 | |
#SingleInstance Force | |
DetectHiddenWindows true | |
; Globals to manage the suspend/resume state | |
global IsProcessSuspended := false | |
global IsProcessResumed := false | |
LockFile := A_Temp "\AutoPauseResume.lock" |
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/env bash | |
set -euo pipefail | |
# βββ PREREQUISITES ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
# 1) Ensure flatpak is available | |
if ! command -v flatpak >/dev/null 2>&1; then | |
echo "Error: flatpak is not installed. Please install flatpak and try again." | |
exit 1 | |
fi |
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
// ==UserScript== | |
// @name YouTube Leanback HQ Thumbnail | |
// @namespace https://sudomaker.com/ | |
// @version 2025-04-30 | |
// @description Replace YouTube TV's default thumbnails with really HQ ones | |
// @author ClassicOldSong | |
// @match https://www.youtube.com/tv | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
// @grant none | |
// ==/UserScript== |
OlderNewer