commit 217479fd7c3de75e74542c9363fe50abba36789d
Author: Simon Watson <spesk@pm.me>
Date: Tue Dec 12 08:46:11 2023 -0500
Add beeper launcher
diff --git a/launchers/Beeper.sh b/launchers/Beeper.sh
new file mode 100755
index 0000000..cc3e33c
--- /dev/null
+++ b/launchers/Beeper.sh
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+# The Beeper AppImage auto updates and in doing so changes the Beeper
+# file name. This script is a launcher interface for Beeper that attempts
+# to find and launch whatever the most recent version of Beeper is
+
+# Link this script to somewhere in your $PATH so that Beeper can
+# be called from the application launcher
+
+BEEPER_BIN=$(find /home/swatson/Downloads/ -name "beeper*" | tail -n1)
+echo $BEEPER_BIN
+
+$BEEPER_BIN > /dev/null 2>&1 &