From e8351e69e99e35c42e9a04551e2c3d7aabf870da Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Thu, 7 Sep 2023 19:28:02 -0400 Subject: [PATCH] SSH fix --- home-config/bash_profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-config/bash_profile b/home-config/bash_profile index ebc6cba..1aa335f 100644 --- a/home-config/bash_profile +++ b/home-config/bash_profile @@ -10,7 +10,7 @@ export PATH=$PATH:~/.nix-profile/bin # Honor per-interactive-shell startup file if [ -f ~/.bashrc ]; then . ~/.bashrc; fi -if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then +if [ -z "$SSH_CLIENT" ] && [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then exec Hyprland fi