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
|
package main
// Port of set_term_title segment from powerine-shell:
// https://github.com/b-ryan/powerline-shell/blob/master/powerline_shell/segments/set_term_title.py
import (
"fmt"
"os"
"strings"
pwl "github.com/justjanne/powerline-go/powerline"
)
func segmentTermTitle(p *powerline) []pwl.Segment {
var title string
term := os.Getenv("TERM")
if !(strings.Contains(term, "xterm") || strings.Contains(term, "rxvt")) {
return []pwl.Segment{}
}
if p.cfg.Shell == "bash" {
title = "\\[\\e]0;\\u@\\h: \\w\\a\\]"
} else if p.cfg.Shell == "zsh" {
title = "%{\033]0;%n@%m: %~\007%}"
} else {
cwd := p.cwd
title = fmt.Sprintf("\033]0;%s@%s: %s\007", p.username, p.hostname, cwd)
}
return []pwl.Segment{{
Name: "termtitle",
Content: title,
Priority: MaxInteger, // do not truncate
HideSeparators: true, // do not draw separators
}}
}
|