Skip to content

Commit

Permalink
Adding some info about source code
Browse files Browse the repository at this point in the history
Fork repo to github.com

What about 🟊++? ;)
  • Loading branch information
esin committed Apr 27, 2017
1 parent 78cf5f3 commit 0aea12b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions intheshell.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,22 @@ func showCreds() {
os.Stdout.Write([]byte("\n\n"))
os.Stdout.Write([]byte(centrifyText("Created")))
os.Stdout.Write([]byte("\n"))
os.Stdout.Write([]byte(centrifyText("by")))
os.Stdout.Write([]byte(centrifyText(" by")))
os.Stdout.Write([]byte("\n\n"))
os.Stdout.Write([]byte(Bold(centrifyText("Andrey Esin"))))
os.Stdout.Write([]byte("\n\n"))
os.Stdout.Write([]byte(centrifyText("[ twitter.com/la_stik ] [ t.me/la_stik ] [ [email protected] ]")))
os.Stdout.Write([]byte("\n\n"))
os.Stdout.Write([]byte(Bold(centrifyText("Sources"))))
os.Stdout.Write([]byte("\n"))
os.Stdout.Write([]byte(centrifyText("[ github.com/esin/intheshell ]")))
os.Stdout.Write([]byte("\n"))
os.Stdout.Write([]byte(centrifyText("[ bitbucket.org/andrey_esin/intheshell ]")))
os.Stdout.Write([]byte("\n"))

os.Stdout.Sync()

time.Sleep(OneSec * 3)
}

// Get terminal count
Expand Down Expand Up @@ -120,7 +128,6 @@ func centrifyText(inText string) string {
// Right exiting from application
func appExit() {
clearScreen()
//os.Stdout.Write([]byte(centerVertical()))
showCreds()
os.Stdout.Write([]byte("\033[?25h"))
os.Exit(0)
Expand Down

0 comments on commit 0aea12b

Please sign in to comment.