mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-01-03 07:17:26 -08:00
1.6 KiB
1.6 KiB
id | title | sidebar_label |
---|---|---|
wakatime | Wakatime | Wakatime |
What
Shows the tracked time on wakatime of the current day
:::caution
You must request an API key at the wakatime website. The free tier for is sufficient. You'll find the API key in your profile settings page.
:::
Sample Configuration
{
"type": "wakatime",
"style": "powerline",
"powerline_symbol": "\uE0B0",
"foreground": "#ffffff",
"background": "#007acc",
"properties": {
"url": "https://wakatime.com/api/v1/users/current/summaries?start=today&end=today&api_key=API_KEY",
"cache_timeout": 10,
"http_timeout": 500
}
},
Properties
- url:
string
- Your Wakatime summaries URL, including the API key. Example above. You'll know this works if you can curl it yourself and a result. - defaults to `` - http_timeout:
int
- The default timeout for http request is 20ms. If no segment is shown, try increasing this timeout. - cache_timeout:
int
- The default timeout for request caching is 10m. A value of 0 disables the cache.
Template (info)
:::note default template
{{ secondsRound .CummulativeTotal.Seconds }}
:::
Properties
.CummulativeTotal
:wtTotals
- object holding total tracked time values
wtTotals Properties
.Seconds
:int
- a number reprecenting the total tracked time in seconds.Text
:string
- a string with human readable tracked time (eg: "2 hrs 30 mins")