summaryrefslogtreecommitdiff
path: root/.local/bin/cryptusb
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/cryptusb')
-rwxr-xr-x.local/bin/cryptusb/create-cryptusb34
-rwxr-xr-x.local/bin/cryptusb/sync-cryptusb8
2 files changed, 0 insertions, 42 deletions
diff --git a/.local/bin/cryptusb/create-cryptusb b/.local/bin/cryptusb/create-cryptusb
deleted file mode 100755
index e0f49fe..0000000
--- a/.local/bin/cryptusb/create-cryptusb
+++ /dev/null
@@ -1,34 +0,0 @@
1#!/bin/sh
2# Prompts for and creates a LUKS encrypted partition on a device
3
4# Get disks connected to the system that are hotpluggable (USBs)
5devices="$(lsblk -lp -o NAME,SIZE,HOTPLUG,TYPE | grep "1 disk" | awk '{print $1,"-",$2}')"
6[ "$devices" = "" ] && echo "no devices available" && exit 0
7
8# Prompt for device selection from the user
9select=$(echo "$devices" | dmenu -i -p "Select a device")
10[ "$select" = "" ] && echo "no device selected" && exit 0
11
12# Get confirmation since this is a potentially dangerous operation
13yn=$(echo "No\nYes" | dmenu -i -p "Create encrypted partition on $select")
14[ "$yn" != "Yes" ] && exit 0
15
16# Get device path from selection string
17usb=$(echo $select | cut -d ' ' -f 1)
18echo $usb
19
20# Create LUKS partition on selected device (user will be promted for password to encrypt)
21sudo cryptsetup --type luks2 luksFormat "$usb"
22
23# Open device and create filesystem on partition
24echo "creating filesystem"
25map_name="crypt-create"
26sudo cryptsetup open "$usb" "$map_name"
27sudo mkfs.ext4 "/dev/mapper/$map_name"
28
29# Close device after creating filesystem
30sudo cryptsetup close "$map_name"
31
32echo "done"
33
34
diff --git a/.local/bin/cryptusb/sync-cryptusb b/.local/bin/cryptusb/sync-cryptusb
deleted file mode 100755
index 6ba2737..0000000
--- a/.local/bin/cryptusb/sync-cryptusb
+++ /dev/null
@@ -1,8 +0,0 @@
1#!/bin/sh
2# Syncs important files to encrypted USB
3
4mount-device && \
5rsync -avP --exclude="virtual_machines*" --exclude="media*" \
6 --exclude="*.iso" --exclude="*.qcow2" \
7 $HOME/ /mnt/cryptusb/$USER@$(hostname)/ && \
8unmount-device