#!/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 &