Initial code commit

This commit is contained in:
2024-01-16 14:35:34 -05:00
parent c20c8bc349
commit af6600de80
12 changed files with 431 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package main
import (
termy "golang.org/x/crypto/ssh/terminal"
"os"
)
// invisible variables
var home, _ = os.UserHomeDir()
// exported variables
var (
RootLength = len(EntryRoot)
Width, _, _ = termy.GetSize(int(os.Stdout.Fd()))
)