diff options
| -rw-r--r-- | init.go | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -10,6 +10,7 @@ package main import ( "errors" "os" + "runtime" "runtime/debug" "time" @@ -49,6 +50,11 @@ func init() { me.textbox.wId = -55 me.stdout.wId = -4 + // macos iterm2 really only works with dark mode right now + if runtime.GOOS == "macos" { + me.dark = true + } + // Set(&me, "dense") me.myTree = tree.New() |
