소스 검색

Add beeper launcher

Simon Watson 5 달 전
부모
커밋
217479fd7c
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  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 &