瀏覽代碼

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 &