diff options
author | Ryan Schanzenbacher <ryan@rschanz.org> | 2023-09-07 19:28:02 -0400 |
---|---|---|
committer | Ryan Schanzenbacher <ryan@rschanz.org> | 2023-09-07 19:28:02 -0400 |
commit | e8351e69e99e35c42e9a04551e2c3d7aabf870da (patch) | |
tree | 2ec4f3132ead7abd4df4ec824e5f4d6ba592e6df | |
parent | 409c1576b7f26056fd012b6010ae1e8bc2840412 (diff) |
SSH fix
-rw-r--r-- | home-config/bash_profile | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
10 | # Honor per-interactive-shell startup file | 10 | # Honor per-interactive-shell startup file |
11 | if [ -f ~/.bashrc ]; then . ~/.bashrc; fi | 11 | if [ -f ~/.bashrc ]; then . ~/.bashrc; fi |
12 | 12 | ||
13 | if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then | 13 | if [ -z "$SSH_CLIENT" ] && [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then |
14 | exec Hyprland | 14 | exec Hyprland |
15 | fi | 15 | fi |
16 | 16 | ||