diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-26 22:27:32 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-26 22:27:32 +0100 |
commit | 5464c097a44165473b352c463805a39799888c52 (patch) | |
tree | 66b0c0ed1eaac15e288f3831b307771c21b3cdf7 /config/essentials | |
parent | 42c8c1657de27ca7b35981c89f6edb8f31fbfe1a (diff) |
checkpoint
Diffstat (limited to 'config/essentials')
-rwxr-xr-x | config/essentials/zsh/.zprofile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/essentials/zsh/.zprofile b/config/essentials/zsh/.zprofile index f67e3f7..2e40c32 100755 --- a/config/essentials/zsh/.zprofile +++ b/config/essentials/zsh/.zprofile @@ -1,6 +1,7 @@ #!/bin/sh -if [ "$TTY" = "/dev/tty1" ] && [ "$(id -u)" -ne 0 ]; then +if { [ "$TTY" = "/dev/tty1" ] || [ "$TTY" = "/dev/tty8" ]; } && + [ "$(id -u)" -ne 0 ]; then exec startx > /dev/null 2>&1 exit fi |