Beeper.sh 454 B

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