oh-my-posh/docs/docs/segment-session.md
2021-12-04 13:13:05 +01:00

896 B

id title sidebar_label
session Session Session

What

Show the current user and host name.

Sample Configuration

{
  "type": "session",
  "style": "diamond",
  "foreground": "#ffffff",
  "background": "#c386f1",
  "leading_diamond": "\uE0B6",
  "trailing_diamond": "\uE0B0",
  "properties": {
    "template": "{{ if .SSHSession }}\uF817 {{ end }}{{ .UserName }}"
  }
}

Properties

  • template: string - A go text/template template extended with sprig utilizing the properties below.

Template Properties

  • .UserName: string - the current user's name
  • .ComputerName: string - the current computer's name
  • .SSHSession: boolean - active SSH session or not
  • .Root: boolean - are you a root/admin user or not