mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-14 06:54:05 -08:00
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
---
|
|
id: upgrade
|
|
title: Upgrade notice
|
|
sidebar_label: Upgrade
|
|
---
|
|
|
|
## What
|
|
|
|
Displays when there's an update available for Oh My Posh.
|
|
|
|
## Sample Configuration
|
|
|
|
import Config from "@site/src/components/Config.js";
|
|
|
|
<Config
|
|
data={{
|
|
type: "upgrade",
|
|
style: "plain",
|
|
foreground: "#111111",
|
|
background: "#FFD664",
|
|
}}
|
|
/>
|
|
|
|
## Properties
|
|
|
|
| Name | Type | Default | Description |
|
|
| --------------- | :---: | :-----: | ------------------------------------------------------------------------------------- |
|
|
| `cache_timeout` | `int` | `10080` | in minutes - how long to wait before checking for a new version. Default is one week. |
|
|
|
|
## Template ([info][templates])
|
|
|
|
:::note default template
|
|
|
|
```template
|
|
\uf019
|
|
```
|
|
|
|
:::
|
|
|
|
### Properties
|
|
|
|
| Name | Type | Description |
|
|
| ---------- | -------- | ----------------------------------- |
|
|
| `.Current` | `string` | the current version number |
|
|
| `.Latest` | `string` | the latest available version number |
|
|
|
|
[templates]: /docs/configuration/templates
|