dotfiles

regexghost dotfiles and scripts
git clone https://git.regexghost.com/dotfiles.git
Log | Files | Refs | README

commit 2765881bbe9b1148707882cabaab379ef33428b3
parent 16afe9c5b0a7d317c3c2d2806051e97192c414b5
Author: regexghost <dev@regexghost.com>
Date:   Tue, 16 Jun 2026 21:14:27 +0100

changed to wget in stream-check.sh, curl doesn't work for Kick on older Debain

Diffstat:
Mterminal-scripts/stream-check.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/terminal-scripts/stream-check.sh b/terminal-scripts/stream-check.sh @@ -23,7 +23,7 @@ if ! [ "$youtube_at" = "NONE" ]; then fi fi if ! [ "$kick_at" = "NONE" ]; then - curl -s --user-agent "NetSurf" "https://kick.com/api/v1/channels/${kick_at}" > /tmp/live_kick.html + wget -q --user-agent "NetSurf" "https://kick.com/api/v1/channels/${kick_at}" -O /tmp/live_kick.html if grep -q "is_live\":true" /tmp/live_kick.html; then echo "${name} is live on Kick: https://www.kick.com/${kick_at}" fi