mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-03-05 20:49:04 -08:00
37 lines
899 B
Markdown
37 lines
899 B
Markdown
---
|
|
id: session
|
|
title: Session
|
|
sidebar_label: Session
|
|
---
|
|
|
|
## What
|
|
|
|
Show the current user and host name.
|
|
|
|
## Sample Configuration
|
|
|
|
```json
|
|
{
|
|
"type": "session",
|
|
"style": "diamond",
|
|
"foreground": "#ffffff",
|
|
"background": "#c386f1",
|
|
"leading_diamond": "",
|
|
"trailing_diamond": "",
|
|
"properties": {
|
|
"user_info_separator": "@",
|
|
"postfix": " "
|
|
}
|
|
}
|
|
```
|
|
|
|
## Properties
|
|
|
|
- user_info_separator: `string` - text/icon to put in between the user and host name.
|
|
- user_color: `string` [hex color code][colors] - override the foreground color of the user name.
|
|
- host_color: `string` [hex color code][colors] - override the foreground color of the host name.
|
|
- display_user: `boolean` - display the user name or not default: `true`.
|
|
- display_host: `boolean` - display the host name or not default: `true`.
|
|
|
|
[colors]: https://htmlcolorcodes.com/color-chart/material-design-color-chart/
|