Browse Source

Add beeper launcher

Simon Watson 4 months ago
parent
commit
217479fd7c
1 changed files with 13 additions and 0 deletions
  1. 13 0
      launchers/Beeper.sh

+ 13 - 0
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 &