[fish] Commented out the tty auto-login

This commit is contained in:
Marcel Kapfer 2020-05-20 19:22:02 +02:00
parent c9b0b90bf8
commit b265d51789
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 9 additions and 9 deletions

View File

@ -21,12 +21,12 @@
# Automatically start X at login
# 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
# Unlock GPG keyring befor starting X.
# This makes some things easier.
echo "gpg unlock" | gpg -se -r me@mmk2410.org > /dev/null
pulseaudio -D # start pulseaudio before X is started
exec startx -- -keeptty
end
end
#if status --is-login
# 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
# pulseaudio -D # start pulseaudio before X is started
# exec startx -- -keeptty
# end
#end