#!/bin/sh # Single script for easy handling of encrypted USB # Calls mount, sync, and umount scripts to automatically handle what is commonly # run for encrypted USBs mount-cryptusb && notify-send "Encrypted USB mounted" sync-cryptusb && notify-send "Encrypted USB synced" umount-cryptusb && notify-send "Encrypted USB unmounted"