diff options
author | Jakub Kaczor <jakubk0.kaczor@gmail.com> | 2022-04-09 17:33:02 +0200 |
---|---|---|
committer | Jakub Kaczor <jakubk0.kaczor@gmail.com> | 2022-04-09 17:33:02 +0200 |
commit | 95687867d1795299625e1e3dc5cdc412155de879 (patch) | |
tree | 30b75e2cc9936acadb78d2561f56a0a5d9b439eb /bin | |
parent | e9f58514536a042df853df9b5359dfd0ecf02aa0 (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.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/openfile | 2 |
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 |