diff options
author | David Runge <dave@sleepmap.de> | 2022-05-01 11:36:59 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2022-05-01 16:18:06 +0200 |
commit | e22e12c3472b6bf14c6c3e9c74bc3519e8929a38 (patch) | |
tree | 1dc84ba07bd5043a1814db96d9303197dc964e35 /bin/gpg2mutt | |
parent | a4864eba1167abd8f096ce91400a3521bebc589b (diff) | |
download | dotfiles-e22e12c3472b6bf14c6c3e9c74bc3519e8929a38.tar.gz dotfiles-e22e12c3472b6bf14c6c3e9c74bc3519e8929a38.tar.bz2 dotfiles-e22e12c3472b6bf14c6c3e9c74bc3519e8929a38.tar.xz dotfiles-e22e12c3472b6bf14c6c3e9c74bc3519e8929a38.zip |
gpg2mutt: Adapt hardcoded path to be XDG compliant
bin/gpg2mutt:
Change the output file to be XDG_CONFIG_DIR compliant.
Diffstat (limited to 'bin/gpg2mutt')
-rwxr-xr-x | bin/gpg2mutt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gpg2mutt b/bin/gpg2mutt index d9db27b..18553c0 100755 --- a/bin/gpg2mutt +++ b/bin/gpg2mutt @@ -12,7 +12,7 @@ LANG= # Output file -output="$HOME/.mutt/gpg-auto.rc" +output="$HOME/.config/mutt/gpg-auto.rc" # if the file exists, delete it if [ -f "${output}" ]; then |