mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 13:04:04 -08:00
c57975985f
resolves #3818
52 lines
2 KiB
Plaintext
52 lines
2 KiB
Plaintext
---
|
|
id: connection
|
|
title: Connection
|
|
sidebar_label: Connection
|
|
---
|
|
|
|
## Connection
|
|
|
|
Show details about the currently connected network.
|
|
|
|
:::info
|
|
Currently only supports Windows. Pull requests for Darwin and Linux support are welcome :)
|
|
:::
|
|
|
|
## Sample Configuration
|
|
|
|
import Config from '@site/src/components/Config.js';
|
|
|
|
<Config data={{
|
|
"type": "connection",
|
|
"style": "powerline",
|
|
"background": "#8822ee",
|
|
"foreground": "#222222",
|
|
"powerline_symbol": "\uE0B0"
|
|
}}/>
|
|
|
|
## Properties
|
|
|
|
| Name | Type | Description |
|
|
| ------ | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
| `type` | `string` | the type of connection to display. Can be a single value or multiple joined by <inlineCode>\|</inlineCode> . The first to resolve is shown (**default value** is <inlineCode>wifi\|ethernet</inlineCode>). Possible values:<ul><li>`wifi`</li><li>`ethernet`</li><li>`bluetooth`</li><li>`cellular`</li></ul> |
|
|
|
|
## Template ([info][templates])
|
|
|
|
:::note default template
|
|
|
|
```template
|
|
{{ if eq .Type \"wifi\"}}\uf1eb{{ else if eq .Type \"ethernet\"}}\ueba9{{ end }}
|
|
```
|
|
|
|
:::
|
|
|
|
### Properties
|
|
|
|
| Name | Type | Description |
|
|
| ------- | -------- | ------------------------------------------------------- |
|
|
| `.Type` | `string` | the connection type type. Single values of `type` above |
|
|
| `.Name` | `string` | the name of the connection |
|
|
| `.SSID` | `string` | the SSID of the current wifi network |
|
|
|
|
[templates]: /docs/configuration/templates
|