From 0b0adf152e94df7dff508462b4e50500e3c6ad6a Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 20 Nov 2023 06:04:40 +0100 Subject: Automatically mount signal/element/wire when started MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- wire-desktop/bash-aliases | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 wire-desktop/bash-aliases (limited to 'wire-desktop/bash-aliases') diff --git a/wire-desktop/bash-aliases b/wire-desktop/bash-aliases deleted file mode 100644 index dfc0d2b..0000000 --- a/wire-desktop/bash-aliases +++ /dev/null @@ -1,42 +0,0 @@ -# -*- shell-script -*- - -mount-wire () { - if mountpoint -q -- ~/.var/opt/wire/WireCrypt.d; then - printf '%s\n' 'mount-wire: already mounted' >&2 - elif test -e /dev/mapper/WireCrypt; then - asroot env WIRE_DIR=~/.var/opt/wire sh -ec \ - 'mount -- /dev/mapper/WireCrypt "${WIRE_DIR}/WireCrypt.d"' - else - gpg --decrypt ~/.var/opt/wire/WireCrypt.key | \ - key2root -k WireCrypt env \ - WIRE_IMG=~/.var/opt/wire/WireCrypt.img \ - WIRE_DIR=~/.var/opt/wire \ - WIRE_DEV="$(losetup | sed 's/\s\+/ /g' | cut -d ' ' -f 1,6 | \ - sed -n 's#\(/[^ ]*\) '"$(realpath -- ~/.var/opt/wire/WireCrypt.img)"'$#\1#p' | sed 1q)" \ - sh -ec ' - if test -z "${WIRE_DEV}"; then - WIRE_DEV="$(losetup --show -f -P "${WIRE_IMG}")" - fi - cryptsetup -d - open "${WIRE_DEV}" WireCrypt - mount -- /dev/mapper/WireCrypt "${WIRE_DIR}/WireCrypt.d" - ' - fi -} - -umount-wire () { - asroot env \ - WIRE_DIR=~/.var/opt/wire \ - WIRE_DEV="$(losetup | sed 's/\s\+/ /g' | cut -d ' ' -f 1,6 | \ - sed -n 's#\(/[^ ]*\) '"$(realpath -- ~/.var/opt/wire/WireCrypt.img)"'$#\1#p' | sed 1q)" \ - sh -c ' - if mountpoint -q -- "${WIRE_DIR}/WireCrypt.d"; then - umount -- "${WIRE_DIR}/WireCrypt.d" - fi - if test -e /dev/mapper/WireCrypt; then - cryptsetup close WireCrypt - fi - if test -n "${WIRE_DEV}"; then - losetup -d "${WIRE_DEV}" - fi - ' -} -- cgit v1.2.3-70-g09d2