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