Bitwarden.sh 470 B

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