aboutsummaryrefslogtreecommitdiffstats
path: root/wire-desktop/bash-aliases
diff options
context:
space:
mode:
Diffstat (limited to 'wire-desktop/bash-aliases')
-rw-r--r--wire-desktop/bash-aliases6
1 files changed, 3 insertions, 3 deletions
diff --git a/wire-desktop/bash-aliases b/wire-desktop/bash-aliases
index aa18143..09f4733 100644
--- a/wire-desktop/bash-aliases
+++ b/wire-desktop/bash-aliases
@@ -1,8 +1,8 @@
# -*- shell-script -*-
mount-wire () {
- gpg --decrypt ~/.var/wire/WireCrypt.key | \
- asroot env XDG_RUNTIME_DIR="${XDG_RUNTIME_DIR}" WIRE_DIR=~/.var/wire sh -ec '
+ gpg --decrypt ~/.var/opt/wire/WireCrypt.key | \
+ asroot env XDG_RUNTIME_DIR="${XDG_RUNTIME_DIR}" WIRE_DIR=~/.var/opt/wire sh -ec '
device="$(losetup --show -f -P "${WIRE_DIR}/WireCrypt.img")"
printf "%s\n" "${device}" > "${XDG_RUNTIME_DIR}/WireCrypt"
cryptsetup -d - open "${device}" WireCrypt
@@ -11,7 +11,7 @@ mount-wire () {
}
umount-wire () {
- asroot env XDG_RUNTIME_DIR="${XDG_RUNTIME_DIR}" WIRE_DIR=~/.var/wire sh -c '
+ asroot env XDG_RUNTIME_DIR="${XDG_RUNTIME_DIR}" WIRE_DIR=~/.var/opt/wire sh -c '
umount "${WIRE_DIR}/WireCrypt.d"
cryptsetup close WireCrypt
losetup --detach "$(cat -- "${XDG_RUNTIME_DIR}/WireCrypt")"