launchers/Beeper.sh
1	#!/bin/bash 
2
3 # The Beeper AppImage auto updates and in doing so changes the Beeper
4 # file name. This script is a launcher interface for Beeper that attempts
5 # to find and launch whatever the most recent version of Beeper is
6
7 # Link this script to somewhere in your $PATH so that Beeper can
8 # be called from the application launcher
9
10 BEEPER_BIN=$(find /home/swatson/Downloads/ -name "beeper*" | tail -n1)
11 echo $BEEPER_BIN
12
13 $BEEPER_BIN > /dev/null 2>&1 &