Configured TTY Login so that it uses Bash on TTY

This commit is contained in:
KoenDR06 2024-05-17 15:13:29 +02:00
parent 8a5917067f
commit 24ae897664

View file

@ -22,6 +22,6 @@
theme = "agnoster";
};
shellInit = "eval \"$(zoxide init zsh --cmd cd)\"";
shellInit = "if [[ $(tty) == \"/dev/tty\"* ]]; then; bash; fi; eval \"$(zoxide init zsh --cmd cd)\"";
};
}