bin/prompt.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package main import ( "fmt" "os" "os/exec" "strings" ) func main() { cwd, _ := os.Getwd() host, _ := os.Hostname() home := os.Getenv("HOME") var parts []string if strings.HasPrefix(cwd, home) { cwd = "~" + cwd[len(home):] } out, err := exec.Command("git", "branch", "--show-current").Output() if err != nil { out = []byte("^(;,;)^\n") } branchname := strings.TrimSuffix(string(out), "\n") fmt.Printf("\033[38;5;162m[%s]\033[0m ", host) parts = strings.Split(cwd, "/") for i, part := range parts { if i == len(parts)-1 { fmt.Printf("%s", part) } else { if len(part) != 0 { fmt.Printf("%c/", part[0]) } else { fmt.Printf("/") } } } fmt.Printf(" %s", branchname) }