citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

zoom (154B)


      1 #!/usr/bin/env bash
      2 
      3 usage () {
      4   printf 'usage: zoom https://zoom.us/j/123456\n'
      5   exit 1
      6 }
      7 
      8 if [ -z "$1" ]; then
      9   usage
     10 fi
     11 
     12 exec open $(zoom-uri "$1")