package tmux import "os" func IsSSHSession() bool { return os.Getenv("SSH_CONNECTION") != "" || os.Getenv("SSH_CLIENT") != "" }