blob: 63d6ef4b262e3fff027f611379afcc8787c1f10b (
plain)
1
2
3
4
5
6
7
8
|
#!/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"
|