fish: unlock gpg at login

This commit is contained in:
Marcel Kapfer 2018-02-03 18:32:12 +01:00
parent 2ea71424a7
commit bd8e803a8d
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 6 additions and 3 deletions

View File

@ -95,7 +95,10 @@ gpg-connect-agent updatestartuptty /bye > /dev/null
# source: https://wiki.archlinux.org/index.php/Fish#Start_X_at_login
# This must be at the bottom of this file
if status --is-login
if test -z "$DISPLAY" -a $XDG_VTNR = 1
exec startx -- -keeptty
end
if test -z "$DISPLAY" -a $XDG_VTNR = 1
# Unlock GPG keyring befor starting X.
# This makes some things easier.
echo "gpg unlock" | gpg -se -r me@mmk2410.org > /dev/null
exec startx -- -keeptty
end
end