diff options
author | Aaditya Dhruv <[email protected]> | 2025-07-19 01:59:11 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-07-19 02:01:07 -0500 |
commit | 2d7c5191838711f92581755f7f97d63a53fc3c49 (patch) | |
tree | 7baef29ac2aa959e1231ff0254a9d9570b7c4ec8 /src/config/files | |
parent | 6d2dbbb7fd0df585fcdf35ca4673bc2a86a15f0a (diff) |
Update neomutt config with better file browser and fixed aliases
Diffstat (limited to 'src/config/files')
-rwxr-xr-x | src/config/files/neomutt/mutt_generate_attachment_commands | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/config/files/neomutt/mutt_generate_attachment_commands b/src/config/files/neomutt/mutt_generate_attachment_commands new file mode 100755 index 0000000..2f1f011 --- /dev/null +++ b/src/config/files/neomutt/mutt_generate_attachment_commands @@ -0,0 +1,7 @@ +#!/bin/bash + +NNN_OPTS=d nnn -p /tmp/nnn_pick +rm -f /tmp/nnn_attach_cmds +for f in $(cat /tmp/nnn_pick); do + echo "push \"<attach-file> ${f}<enter>\"" >> /tmp/nnn_attach_cmds +done |