1 package utils 2 3 import ( 4 "fmt" 5 ) 6 7 func SetConsoleTitle(title string) { 8 fmt.Printf("\033]0;%s\007", title) 9 } 10
View as plain text