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/umount-wire | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 wire-desktop/umount-wire (limited to 'wire-desktop/umount-wire') diff --git a/wire-desktop/umount-wire b/wire-desktop/umount-wire new file mode 100755 index 0000000..0301326 --- /dev/null +++ b/wire-desktop/umount-wire @@ -0,0 +1,17 @@ +#!/bin/dash + +asroot env \ + WIRE_DIR="${HOME}/.var/opt/wire" \ + WIRE_DEV="$(losetup | sed 's/\s\+/ /g' | cut -d ' ' -f 1,6 | \ + sed -n 's#\(/[^ ]*\) '"$(realpath -- "${HOME}/.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