You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
smug/context.go

13 lines
198 B
Go

package main
import "os"
type Context struct {
InsideTmuxSession bool
}
func CreateContext() *Context {
insideTmuxSession := os.Getenv("TERM") == "screen"
return &Context{insideTmuxSession}
}