summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Kaczor <jakubk0.kaczor@gmail.com>2022-04-09 17:33:02 +0200
committerJakub Kaczor <jakubk0.kaczor@gmail.com>2022-04-09 17:33:02 +0200
commit95687867d1795299625e1e3dc5cdc412155de879 (patch)
tree30b75e2cc9936acadb78d2561f56a0a5d9b439eb
parente9f58514536a042df853df9b5359dfd0ecf02aa0 (diff)
Hard link the file instead of copying
In the latest neomutt release (2022-04-08), neomutt/neomutt/pull/3267 is merged. Neomutt doesn't overwrite files with zeros on closing anymore, just unlinks it. Therefore, instead of copying, files can be hard linked.
-rwxr-xr-xbin/openfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/openfile b/bin/openfile
index cf3c6c3..5a250dc 100755
--- a/bin/openfile
+++ b/bin/openfile
@@ -5,6 +5,6 @@ tempdir="${XDG_CACHE_HOME:-$HOME/.cache}/mutt-wizard/files"
file="$tempdir/$(basename "$1")"
[ "$(uname)" = "Darwin" ] && opener="open" || opener="setsid -f xdg-open"
mkdir -p "$tempdir"
-cp -f "$1" "$file"
+ln "$1" "$file"
$opener "$file" >/dev/null 2>&1
find "${tempdir:?}" -mtime +1 -type f -delete