From c210a59746c902ea4b083d536912b90621d0afa5 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 22 May 2024 18:41:38 -0400 Subject: Add example reconnect script --- README.7 | 4 ++++ scripts/reconnect.sh | 10 ++++++++++ 2 files changed, 14 insertions(+) create mode 100644 scripts/reconnect.sh diff --git a/README.7 b/README.7 index 70ba7c8..cfc5af2 100644 --- a/README.7 +++ b/README.7 @@ -224,6 +224,10 @@ example .Xr tmux 1 configuration for multiple networks and automatic reconnects +.It Pa scripts/reconnect.sh +example script to restart +.Xr catgirl 1 +when it gets disconnected .It Pa scripts/notify-send.scpt .Xr notify-send 1 in AppleScript diff --git a/scripts/reconnect.sh b/scripts/reconnect.sh new file mode 100644 index 0000000..92d9668 --- /dev/null +++ b/scripts/reconnect.sh @@ -0,0 +1,10 @@ +#!/bin/sh +set -u + +while :; do + catgirl "$@" + status=$? + if [ $status -ne 69 ]; then + exit $status + fi +done -- cgit 1.4.1