diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-02-03 21:43:27 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-02-03 21:43:27 +0100 |
commit | 987ab82d556dff2ce2b37676f1cb36a98b230bbe (patch) | |
tree | aaa9ba70dde306e319e0953a1cbbc5848b958b77 /.config/shell | |
parent | 42c830fecf6a3d85c51ac8538a2198daa8e4e261 (diff) |
fix: add export of tty to fix gpg popup
Diffstat (limited to '.config/shell')
-rwxr-xr-x | .config/shell/profile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.config/shell/profile b/.config/shell/profile index 824dcff..1d11d80 100755 --- a/.config/shell/profile +++ b/.config/shell/profile @@ -7,6 +7,9 @@ export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}" unsetopt PROMPT_SP +# GPG +export GPG_TTY=$(tty) + # Default programs: export EDITOR="nvim" export TERMINAL="st" |