diff options
| author | Craig Jennings <c@cjennings.net> | 2025-06-09 11:42:47 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-06-09 11:42:47 -0500 |
| commit | 0a40e2ec7db819f37e356475d56425df5daacf97 (patch) | |
| tree | a257cf84f66ec13a80f9a88c963a68767a9821a0 /dotfiles/system/.local/bin/warpinator-start | |
| parent | c545375306180583d2b96e060d5e06ced96ca014 (diff) | |
get all startup applications working
Diffstat (limited to 'dotfiles/system/.local/bin/warpinator-start')
| -rwxr-xr-x | dotfiles/system/.local/bin/warpinator-start | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dotfiles/system/.local/bin/warpinator-start b/dotfiles/system/.local/bin/warpinator-start new file mode 100755 index 0000000..2d1798c --- /dev/null +++ b/dotfiles/system/.local/bin/warpinator-start @@ -0,0 +1,11 @@ +#!/bin/sh +# attempts to launch warpinator + +logdir="$HOME/.local/var/log/" +[ -d $logdir ] || mkdir -p "$logdir" +logfile="$logdir/$(date +%Y-%m-%d_%H-%M-%S-%3N.warpinator.log)" + +echo "$(date): Starting warpinator" >> "$logfile" 2>&1 +sleep 20 && warpinator >> "$logfile" 2>&1 +echo "$(date): Starting warpinator again" >> "$logfile" 2>&1 +sleep 20 && warpinator >> "$logfile" 2>&1 |
