Sfoglia il codice sorgente

Add beeper launcher

Simon Watson 5 mesi fa
parent
commit
217479fd7c
1 ha cambiato i file con 13 aggiunte e 0 eliminazioni
  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 &