mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
Add the Todo module to the documentation
This commit is contained in:
parent
544d8c8db9
commit
641cd21e9c
@ -30,6 +30,6 @@ Available modules:
|
|||||||
<li><a href="/posts/modules/opsgenie">OpsGenie</a>
|
<li><a href="/posts/modules/opsgenie">OpsGenie</a>
|
||||||
<li><a href="/posts/modules/security">Security</a>
|
<li><a href="/posts/modules/security">Security</a>
|
||||||
<li><a href="/posts/modules/textfile">Text File</a>
|
<li><a href="/posts/modules/textfile">Text File</a>
|
||||||
<li><a href="/posts/modules/todo" class="disabled">Todo</a>
|
<li><a href="/posts/modules/todo">Todo</a>
|
||||||
<li><a href="/posts/modules/weather">Weather</a>
|
<li><a href="/posts/modules/weather">Weather</a>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -57,14 +57,12 @@ gcal:
|
|||||||
### Attributes
|
### Attributes
|
||||||
|
|
||||||
`colors.title` <br />
|
`colors.title` <br />
|
||||||
Specifies the default colour for calendar event titles. <br />
|
The default colour for calendar event titles. <br />
|
||||||
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.
|
||||||
color</a> name.
|
|
||||||
|
|
||||||
`colors.description` <br />
|
`colors.description` <br />
|
||||||
Specifies the default color for calendar event descriptions. <br />
|
The default color for calendar event descriptions. <br />
|
||||||
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.
|
||||||
color</a> name.
|
|
||||||
|
|
||||||
`colors.highlights` <br />
|
`colors.highlights` <br />
|
||||||
A list of arrays that define a regular expression pattern and a color.
|
A list of arrays that define a regular expression pattern and a color.
|
||||||
@ -73,9 +71,8 @@ be drawn in that colour. Over-rides the default title colour. <br />
|
|||||||
Values: [a valid regular expression, any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.]
|
Values: [a valid regular expression, any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.]
|
||||||
|
|
||||||
`colors.past` <br />
|
`colors.past` <br />
|
||||||
Specifies the color for calendar events that have passed. <br />
|
The color for calendar events that have passed. <br />
|
||||||
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.
|
||||||
color</a> name.
|
|
||||||
|
|
||||||
`conflictIcon` <br />
|
`conflictIcon` <br />
|
||||||
The icon displayed beside calendar events that have conflicting times
|
The icon displayed beside calendar events that have conflicting times
|
||||||
@ -87,7 +84,7 @@ The icon displayed beside the current calendar event. <br />
|
|||||||
Values: Any displayable unicode character.
|
Values: Any displayable unicode character.
|
||||||
|
|
||||||
`enabled` <br />
|
`enabled` <br />
|
||||||
Determines whether or not this module is executed and if its data displayed onscreen. <br />
|
Whether or not this module is executed and if its data displayed onscreen. <br />
|
||||||
Values: `true`, `false`.
|
Values: `true`, `false`.
|
||||||
|
|
||||||
`eventCount` <br />
|
`eventCount` <br />
|
||||||
@ -95,7 +92,7 @@ The number of calendar events to display. <br />
|
|||||||
Values: A positive integer, `0..n`.
|
Values: A positive integer, `0..n`.
|
||||||
|
|
||||||
`position` <br />
|
`position` <br />
|
||||||
Defines where in the grid this module's widget will be displayed. <br />
|
Where in the grid this module's widget will be displayed. <br />
|
||||||
|
|
||||||
`refreshInterval` <br />
|
`refreshInterval` <br />
|
||||||
How often, in seconds, this module will update its data. <br />
|
How often, in seconds, this module will update its data. <br />
|
||||||
|
75
_site/content/posts/modules/todo.md
Normal file
75
_site/content/posts/modules/todo.md
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
---
|
||||||
|
title: "Todo"
|
||||||
|
date: 2018-05-10T12:41:50-07:00
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
<img src="/imgs/modules/todo.png" width="320" height="388" alt="todo screenshot" />
|
||||||
|
|
||||||
|
## Source Code
|
||||||
|
|
||||||
|
```bash
|
||||||
|
wtf/todo/
|
||||||
|
```
|
||||||
|
|
||||||
|
## Required ENV Variables
|
||||||
|
|
||||||
|
None.
|
||||||
|
|
||||||
|
## Keyboard Commands
|
||||||
|
|
||||||
|
A basic, interactive todo list.
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
todo:
|
||||||
|
checkedIcon: "X"
|
||||||
|
colors:
|
||||||
|
checked: gray
|
||||||
|
highlight:
|
||||||
|
fore: "black"
|
||||||
|
back: "orange"
|
||||||
|
enabled: true
|
||||||
|
filename: "todo.yml"
|
||||||
|
position:
|
||||||
|
top: 2
|
||||||
|
left: 2
|
||||||
|
height: 2
|
||||||
|
width: 1
|
||||||
|
refreshInterval: 3600
|
||||||
|
```
|
||||||
|
|
||||||
|
### Attributes
|
||||||
|
|
||||||
|
`checkedIcon` <br />
|
||||||
|
The icon used to denote a "checked" todo item. <br />
|
||||||
|
Values: Any displayable unicode character.
|
||||||
|
|
||||||
|
`colors.checked` <br />
|
||||||
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.
|
||||||
|
|
||||||
|
`colors.highlight.fore` <br />
|
||||||
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.
|
||||||
|
|
||||||
|
`colors.highlight.back` <br />
|
||||||
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.
|
||||||
|
|
||||||
|
`enabled` <br />
|
||||||
|
Whether or not this module is executed and if its data displayed onscreen. <br />
|
||||||
|
Values: `true`, `false`.
|
||||||
|
|
||||||
|
`filename` <br />
|
||||||
|
The name for the todo file. <br />
|
||||||
|
*Note:* Currently this file *must* reside in the `~/.wtf/` directory.
|
||||||
|
This is a <a href="https://github.com/senorprogrammer/wtf/issues/35">known bug</a>. <br />
|
||||||
|
Values: Any valid filename, ideally ending in `yml`.
|
||||||
|
|
||||||
|
`position` <br />
|
||||||
|
Where in the grid this module's widget will be displayed. <br />
|
||||||
|
|
||||||
|
`refreshInterval` <br />
|
||||||
|
How often, in seconds, this module will update its data. <br />
|
||||||
|
Values: A positive integer, `0..n`.
|
BIN
_site/static/imgs/modules/todo.png
Normal file
BIN
_site/static/imgs/modules/todo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
@ -29,7 +29,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -72,7 +72,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
BIN
docs/imgs/modules/todo.png
Normal file
BIN
docs/imgs/modules/todo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
@ -71,7 +71,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -6,11 +6,27 @@
|
|||||||
<description>Recent content on WTF</description>
|
<description>Recent content on WTF</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Thu, 10 May 2018 10:44:35 -0700</lastBuildDate>
|
<lastBuildDate>Thu, 10 May 2018 12:41:50 -0700</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="http://wtfutil.com/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="http://wtfutil.com/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Todo</title>
|
||||||
|
<link>http://wtfutil.com/posts/modules/todo/</link>
|
||||||
|
<pubDate>Thu, 10 May 2018 12:41:50 -0700</pubDate>
|
||||||
|
|
||||||
|
<guid>http://wtfutil.com/posts/modules/todo/</guid>
|
||||||
|
<description>Description Source Code wtf/todo/ Required ENV Variables None.
|
||||||
|
Keyboard Commands A basic, interactive todo list.
|
||||||
|
Configuration todo:checkedIcon:&#34;X&#34;colors:checked:grayhighlight:fore:&#34;black&#34;back:&#34;orange&#34;enabled:truefilename:&#34;todo.yml&#34;position:top:2left:2height:2width:1refreshInterval:3600 Attributes checkedIcon The icon used to denote a &ldquo;checked&rdquo; todo item. Values: Any displayable unicode character.
|
||||||
|
colors.checked Values: Any X11 color name.
|
||||||
|
colors.highlight.fore Values: Any X11 color name.
|
||||||
|
colors.highlight.back Values: Any X11 color name.
|
||||||
|
enabled Whether or not this module is executed and if its data displayed onscreen. Values: true, false.
|
||||||
|
filename The name for the todo file.</description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Jira</title>
|
<title>Jira</title>
|
||||||
<link>http://wtfutil.com/posts/modules/jira/</link>
|
<link>http://wtfutil.com/posts/modules/jira/</link>
|
||||||
@ -34,8 +50,8 @@ position Defines where in the grid this module&rsquo;s widget will be displa
|
|||||||
Source Code wtf/gcal/ Required ENV Variables Key: WTF_GOOGLE_CAL_CLIENT_ID Value: Your Google API client ID.
|
Source Code wtf/gcal/ Required ENV Variables Key: WTF_GOOGLE_CAL_CLIENT_ID Value: Your Google API client ID.
|
||||||
Key: WTF_GOOGLE_CAL_CLIENT_SECRET Value: Your Google API client secret.
|
Key: WTF_GOOGLE_CAL_CLIENT_SECRET Value: Your Google API client secret.
|
||||||
Keyboard Commands None.
|
Keyboard Commands None.
|
||||||
Configuration gcal:colors:title:&#34;red&#34;description:&#34;lightblue&#34;highlights:-[&#39;1on1|1\/11&#39;,&#39;green&#39;]-[&#39;apple|google|aws&#39;,&#39;blue&#39;]-[&#39;interview|meet&#39;,&#39;magenta&#39;]-[&#39;lunch&#39;,&#39;yellow&#39;]past:&#34;gray&#34;conflictIcon:&#34;🚨&#34;currentIcon:&#34;💥&#34;enabled:trueeventCount:12position:top:0left:0height:4width:1refreshInterval:300secretFile:&#34;~/.wtf/gcal/client_secret.json&#34; Attributes colors.title Specifies the default colour for calendar event titles. Values: Any X11 color name.
|
Configuration gcal:colors:title:&#34;red&#34;description:&#34;lightblue&#34;highlights:-[&#39;1on1|1\/11&#39;,&#39;green&#39;]-[&#39;apple|google|aws&#39;,&#39;blue&#39;]-[&#39;interview|meet&#39;,&#39;magenta&#39;]-[&#39;lunch&#39;,&#39;yellow&#39;]past:&#34;gray&#34;conflictIcon:&#34;🚨&#34;currentIcon:&#34;💥&#34;enabled:trueeventCount:12position:top:0left:0height:4width:1refreshInterval:300secretFile:&#34;~/.wtf/gcal/client_secret.json&#34; Attributes colors.title The default colour for calendar event titles. Values: Any X11 color name.
|
||||||
colors.description Specifies the default color for calendar event descriptions. Values: Any X11 color name.
|
colors.description The default color for calendar event descriptions. Values: Any X11 color name.
|
||||||
colors.highlights A list of arrays that define a regular expression pattern and a color.</description>
|
colors.highlights A list of arrays that define a regular expression pattern and a color.</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -72,7 +72,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@ -92,6 +92,13 @@
|
|||||||
<h1 class="title">Posts</h1>
|
<h1 class="title">Posts</h1>
|
||||||
<ul class="posts">
|
<ul class="posts">
|
||||||
<li>
|
<li>
|
||||||
|
<span>
|
||||||
|
<a href="http://wtfutil.com/posts/modules/todo/">Todo</a>
|
||||||
|
|
||||||
|
<time class="pull-right post-list">May 10, 2018</time>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</li><li>
|
||||||
<span>
|
<span>
|
||||||
<a href="http://wtfutil.com/posts/modules/jira/">Jira</a>
|
<a href="http://wtfutil.com/posts/modules/jira/">Jira</a>
|
||||||
|
|
||||||
|
@ -6,11 +6,27 @@
|
|||||||
<description>Recent content in Posts on WTF</description>
|
<description>Recent content in Posts on WTF</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Thu, 10 May 2018 10:44:35 -0700</lastBuildDate>
|
<lastBuildDate>Thu, 10 May 2018 12:41:50 -0700</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="http://wtfutil.com/posts/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="http://wtfutil.com/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Todo</title>
|
||||||
|
<link>http://wtfutil.com/posts/modules/todo/</link>
|
||||||
|
<pubDate>Thu, 10 May 2018 12:41:50 -0700</pubDate>
|
||||||
|
|
||||||
|
<guid>http://wtfutil.com/posts/modules/todo/</guid>
|
||||||
|
<description>Description Source Code wtf/todo/ Required ENV Variables None.
|
||||||
|
Keyboard Commands A basic, interactive todo list.
|
||||||
|
Configuration todo:checkedIcon:&#34;X&#34;colors:checked:grayhighlight:fore:&#34;black&#34;back:&#34;orange&#34;enabled:truefilename:&#34;todo.yml&#34;position:top:2left:2height:2width:1refreshInterval:3600 Attributes checkedIcon The icon used to denote a &ldquo;checked&rdquo; todo item. Values: Any displayable unicode character.
|
||||||
|
colors.checked Values: Any X11 color name.
|
||||||
|
colors.highlight.fore Values: Any X11 color name.
|
||||||
|
colors.highlight.back Values: Any X11 color name.
|
||||||
|
enabled Whether or not this module is executed and if its data displayed onscreen. Values: true, false.
|
||||||
|
filename The name for the todo file.</description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Jira</title>
|
<title>Jira</title>
|
||||||
<link>http://wtfutil.com/posts/modules/jira/</link>
|
<link>http://wtfutil.com/posts/modules/jira/</link>
|
||||||
@ -34,8 +50,8 @@ position Defines where in the grid this module&rsquo;s widget will be displa
|
|||||||
Source Code wtf/gcal/ Required ENV Variables Key: WTF_GOOGLE_CAL_CLIENT_ID Value: Your Google API client ID.
|
Source Code wtf/gcal/ Required ENV Variables Key: WTF_GOOGLE_CAL_CLIENT_ID Value: Your Google API client ID.
|
||||||
Key: WTF_GOOGLE_CAL_CLIENT_SECRET Value: Your Google API client secret.
|
Key: WTF_GOOGLE_CAL_CLIENT_SECRET Value: Your Google API client secret.
|
||||||
Keyboard Commands None.
|
Keyboard Commands None.
|
||||||
Configuration gcal:colors:title:&#34;red&#34;description:&#34;lightblue&#34;highlights:-[&#39;1on1|1\/11&#39;,&#39;green&#39;]-[&#39;apple|google|aws&#39;,&#39;blue&#39;]-[&#39;interview|meet&#39;,&#39;magenta&#39;]-[&#39;lunch&#39;,&#39;yellow&#39;]past:&#34;gray&#34;conflictIcon:&#34;🚨&#34;currentIcon:&#34;💥&#34;enabled:trueeventCount:12position:top:0left:0height:4width:1refreshInterval:300secretFile:&#34;~/.wtf/gcal/client_secret.json&#34; Attributes colors.title Specifies the default colour for calendar event titles. Values: Any X11 color name.
|
Configuration gcal:colors:title:&#34;red&#34;description:&#34;lightblue&#34;highlights:-[&#39;1on1|1\/11&#39;,&#39;green&#39;]-[&#39;apple|google|aws&#39;,&#39;blue&#39;]-[&#39;interview|meet&#39;,&#39;magenta&#39;]-[&#39;lunch&#39;,&#39;yellow&#39;]past:&#34;gray&#34;conflictIcon:&#34;🚨&#34;currentIcon:&#34;💥&#34;enabled:trueeventCount:12position:top:0left:0height:4width:1refreshInterval:300secretFile:&#34;~/.wtf/gcal/client_secret.json&#34; Attributes colors.title The default colour for calendar event titles. Values: Any X11 color name.
|
||||||
colors.description Specifies the default color for calendar event descriptions. Values: Any X11 color name.
|
colors.description The default color for calendar event descriptions. Values: Any X11 color name.
|
||||||
colors.highlights A list of arrays that define a regular expression pattern and a color.</description>
|
colors.highlights A list of arrays that define a regular expression pattern and a color.</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@ -151,14 +151,12 @@
|
|||||||
<h3 id="attributes">Attributes</h3>
|
<h3 id="attributes">Attributes</h3>
|
||||||
|
|
||||||
<p><code>colors.title</code> <br />
|
<p><code>colors.title</code> <br />
|
||||||
Specifies the default colour for calendar event titles. <br />
|
The default colour for calendar event titles. <br />
|
||||||
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.</p>
|
||||||
color</a> name.</p>
|
|
||||||
|
|
||||||
<p><code>colors.description</code> <br />
|
<p><code>colors.description</code> <br />
|
||||||
Specifies the default color for calendar event descriptions. <br />
|
The default color for calendar event descriptions. <br />
|
||||||
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.</p>
|
||||||
color</a> name.</p>
|
|
||||||
|
|
||||||
<p><code>colors.highlights</code> <br />
|
<p><code>colors.highlights</code> <br />
|
||||||
A list of arrays that define a regular expression pattern and a color.
|
A list of arrays that define a regular expression pattern and a color.
|
||||||
@ -167,9 +165,8 @@ be drawn in that colour. Over-rides the default title colour. <br />
|
|||||||
Values: [a valid regular expression, any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.]</p>
|
Values: [a valid regular expression, any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.]</p>
|
||||||
|
|
||||||
<p><code>colors.past</code> <br />
|
<p><code>colors.past</code> <br />
|
||||||
Specifies the color for calendar events that have passed. <br />
|
The color for calendar events that have passed. <br />
|
||||||
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.</p>
|
||||||
color</a> name.</p>
|
|
||||||
|
|
||||||
<p><code>conflictIcon</code> <br />
|
<p><code>conflictIcon</code> <br />
|
||||||
The icon displayed beside calendar events that have conflicting times
|
The icon displayed beside calendar events that have conflicting times
|
||||||
@ -181,7 +178,7 @@ The icon displayed beside the current calendar event. <br />
|
|||||||
Values: Any displayable unicode character.</p>
|
Values: Any displayable unicode character.</p>
|
||||||
|
|
||||||
<p><code>enabled</code> <br />
|
<p><code>enabled</code> <br />
|
||||||
Determines whether or not this module is executed and if its data displayed onscreen. <br />
|
Whether or not this module is executed and if its data displayed onscreen. <br />
|
||||||
Values: <code>true</code>, <code>false</code>.</p>
|
Values: <code>true</code>, <code>false</code>.</p>
|
||||||
|
|
||||||
<p><code>eventCount</code> <br />
|
<p><code>eventCount</code> <br />
|
||||||
@ -189,7 +186,7 @@ The number of calendar events to display. <br />
|
|||||||
Values: A positive integer, <code>0..n</code>.</p>
|
Values: A positive integer, <code>0..n</code>.</p>
|
||||||
|
|
||||||
<p><code>position</code> <br />
|
<p><code>position</code> <br />
|
||||||
Defines where in the grid this module’s widget will be displayed. <br /></p>
|
Where in the grid this module’s widget will be displayed. <br /></p>
|
||||||
|
|
||||||
<p><code>refreshInterval</code> <br />
|
<p><code>refreshInterval</code> <br />
|
||||||
How often, in seconds, this module will update its data. <br />
|
How often, in seconds, this module will update its data. <br />
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@ -130,7 +130,7 @@ display in the “Clocks” widget.</p>
|
|||||||
<li><a href="/posts/modules/opsgenie">OpsGenie</a>
|
<li><a href="/posts/modules/opsgenie">OpsGenie</a>
|
||||||
<li><a href="/posts/modules/security">Security</a>
|
<li><a href="/posts/modules/security">Security</a>
|
||||||
<li><a href="/posts/modules/textfile">Text File</a>
|
<li><a href="/posts/modules/textfile">Text File</a>
|
||||||
<li><a href="/posts/modules/todo" class="disabled">Todo</a>
|
<li><a href="/posts/modules/todo">Todo</a>
|
||||||
<li><a href="/posts/modules/weather">Weather</a>
|
<li><a href="/posts/modules/weather">Weather</a>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
181
docs/posts/modules/todo/index.html
Normal file
181
docs/posts/modules/todo/index.html
Normal file
@ -0,0 +1,181 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-us" class="wf-firasans-n4-active wf-active">
|
||||||
|
<head>
|
||||||
|
<link href="http://gmpg.org/xfn/11" rel="profile">
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<!-- Enable responsiveness on mobile devices -->
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="generator" content="Hugo 0.38.2" />
|
||||||
|
|
||||||
|
<title>Todo | WTF</title>
|
||||||
|
<meta content="Todo - WTF" property="og:title">
|
||||||
|
<meta content=" - " property="og:description">
|
||||||
|
<!-- CSS -->
|
||||||
|
<link rel="stylesheet" href="//cdn.rawgit.com/milligram/milligram/master/dist/milligram.min.css">
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:300,300i,400,400i|Roboto+Mono:300,300i,400,400i" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="http://wtfutil.com/css/print.css" media="print">
|
||||||
|
<link rel="stylesheet" href="http://wtfutil.com/css/poole.css">
|
||||||
|
<link rel="stylesheet" href="http://wtfutil.com/css/hyde.css">
|
||||||
|
<link rel="stylesheet" href="http://wtfutil.com/css/wtf.css">
|
||||||
|
<link rel="stylesheet" href="http://wtfutil.com/css/syntax.css">
|
||||||
|
<!-- Font-Awesome -->
|
||||||
|
<script defer src="https://use.fontawesome.com/releases/v5.0.9/js/all.js" integrity="sha384-8iPTk2s/jMVj81dnzb/iFR2sdA7u06vHJyyLlAd4snFpCl/SnyUjRrbdJsw1pGIl" crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<!-- Customised CSS -->
|
||||||
|
<link rel="stylesheet" href="http://wtfutil.com/css/custom.css">
|
||||||
|
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
||||||
|
<!--[if lt IE 9]>
|
||||||
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
||||||
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||||
|
<![endif]-->
|
||||||
|
<!-- Icons -->
|
||||||
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png">
|
||||||
|
<link rel="shortcut icon" href="/favicon.png">
|
||||||
|
|
||||||
|
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="container sidebar-sticky">
|
||||||
|
<div class="sidebar-about text-center">
|
||||||
|
|
||||||
|
<a href="http://wtfutil.com/"> <img src="/img/wtf.png" alt="WFT Logo" class="" width=""> </a>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<h3 style="color: white;">Content</h3>
|
||||||
|
|
||||||
|
<ul style="list-style-type: none;">
|
||||||
|
<li class="sidebar-list-item-1"><a href="/posts/installation/" class="disabled">Installation</a></li>
|
||||||
|
<li class="sidebar-list-item-1"><a href="/posts/configuration/">Configuration</a></li>
|
||||||
|
<li class="sidebar-list-item-1"><a href="/posts/howto/" class="disabled">How to Use</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul style="list-style-type: none;">
|
||||||
|
<li class="sidebar-list-item-1"><a href="/posts/modules/">Modules</a></li>
|
||||||
|
<li class="sidebar-list-item-2"><a href="/posts/modules/bamboohr/">BambooHR</a></li>
|
||||||
|
<li class="sidebar-list-item-2"><a href="/posts/modules/clocks/">Clocks</a></li>
|
||||||
|
<li class="sidebar-list-item-2"><a href="/posts/modules/git/">Git</a></li>
|
||||||
|
<li class="sidebar-list-item-2"><a href="/posts/modules/github/">Github</a></li>
|
||||||
|
<li class="sidebar-list-item-2"><a href="/posts/modules/gcal/">Google Calendar</a></li>
|
||||||
|
<li class="sidebar-list-item-2"><a href="/posts/modules/jira/">Jira</a></li>
|
||||||
|
<li class="sidebar-list-item-2"><a href="/posts/modules/newrelic/">New Relic</a></li>
|
||||||
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="copyright">
|
||||||
|
© 2018 Chris Cummer.
|
||||||
|
<br />
|
||||||
|
<a href="https://creativecommons.org/licenses/by/4.0">Some Rights Reserved</a>.
|
||||||
|
</p>
|
||||||
|
<p class="copyright">
|
||||||
|
Built with <a href="https://gohugo.io/">Hugo</a> & <a href="https://github.com/htr3n/hyde-hyde">hyde-hyde</a>.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="content container">
|
||||||
|
<div class="post">
|
||||||
|
<h1>Todo</h1>
|
||||||
|
|
||||||
|
<div class="col-sm-12 col-md-12">
|
||||||
|
<span class="text-left post-date meta">
|
||||||
|
|
||||||
|
|
||||||
|
<i class="fas fa-calendar-alt"></i> May 10, 2018
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
<i class="fas fa-clock"></i> 1 min read
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 id="description">Description</h2>
|
||||||
|
|
||||||
|
<p><img src="/imgs/modules/todo.png" width="320" height="388" alt="todo screenshot" /></p>
|
||||||
|
|
||||||
|
<h2 id="source-code">Source Code</h2>
|
||||||
|
<div class="highlight"><pre class="chroma"><code class="language-bash" data-lang="bash">wtf/todo/</code></pre></div>
|
||||||
|
<h2 id="required-env-variables">Required ENV Variables</h2>
|
||||||
|
|
||||||
|
<p>None.</p>
|
||||||
|
|
||||||
|
<h2 id="keyboard-commands">Keyboard Commands</h2>
|
||||||
|
|
||||||
|
<p>A basic, interactive todo list.</p>
|
||||||
|
|
||||||
|
<h2 id="configuration">Configuration</h2>
|
||||||
|
<div class="highlight"><pre class="chroma"><code class="language-yaml" data-lang="yaml">todo<span class="p">:</span><span class="w">
|
||||||
|
</span><span class="w"> </span>checkedIcon<span class="p">:</span><span class="w"> </span><span class="s2">"X"</span><span class="w">
|
||||||
|
</span><span class="w"> </span>colors<span class="p">:</span><span class="w">
|
||||||
|
</span><span class="w"> </span>checked<span class="p">:</span><span class="w"> </span>gray<span class="w">
|
||||||
|
</span><span class="w"> </span>highlight<span class="p">:</span><span class="w">
|
||||||
|
</span><span class="w"> </span>fore<span class="p">:</span><span class="w"> </span><span class="s2">"black"</span><span class="w">
|
||||||
|
</span><span class="w"> </span>back<span class="p">:</span><span class="w"> </span><span class="s2">"orange"</span><span class="w">
|
||||||
|
</span><span class="w"> </span>enabled<span class="p">:</span><span class="w"> </span><span class="kc">true</span><span class="w">
|
||||||
|
</span><span class="w"> </span>filename<span class="p">:</span><span class="w"> </span><span class="s2">"todo.yml"</span><span class="w">
|
||||||
|
</span><span class="w"> </span>position<span class="p">:</span><span class="w">
|
||||||
|
</span><span class="w"> </span>top<span class="p">:</span><span class="w"> </span><span class="m">2</span><span class="w">
|
||||||
|
</span><span class="w"> </span>left<span class="p">:</span><span class="w"> </span><span class="m">2</span><span class="w">
|
||||||
|
</span><span class="w"> </span>height<span class="p">:</span><span class="w"> </span><span class="m">2</span><span class="w">
|
||||||
|
</span><span class="w"> </span>width<span class="p">:</span><span class="w"> </span><span class="m">1</span><span class="w">
|
||||||
|
</span><span class="w"> </span>refreshInterval<span class="p">:</span><span class="w"> </span><span class="m">3600</span></code></pre></div>
|
||||||
|
<h3 id="attributes">Attributes</h3>
|
||||||
|
|
||||||
|
<p><code>checkedIcon</code> <br />
|
||||||
|
The icon used to denote a “checked” todo item. <br />
|
||||||
|
Values: Any displayable unicode character.</p>
|
||||||
|
|
||||||
|
<p><code>colors.checked</code> <br />
|
||||||
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.</p>
|
||||||
|
|
||||||
|
<p><code>colors.highlight.fore</code> <br />
|
||||||
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.</p>
|
||||||
|
|
||||||
|
<p><code>colors.highlight.back</code> <br />
|
||||||
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11 color</a> name.</p>
|
||||||
|
|
||||||
|
<p><code>enabled</code> <br />
|
||||||
|
Whether or not this module is executed and if its data displayed onscreen. <br />
|
||||||
|
Values: <code>true</code>, <code>false</code>.</p>
|
||||||
|
|
||||||
|
<p><code>filename</code> <br />
|
||||||
|
The name for the todo file. <br />
|
||||||
|
<em>Note:</em> Currently this file <em>must</em> reside in the <code>~/.wtf/</code> directory.
|
||||||
|
This is a <a href="https://github.com/senorprogrammer/wtf/issues/35">known bug</a>. <br />
|
||||||
|
Values: Any valid filename, ideally ending in <code>yml</code>.</p>
|
||||||
|
|
||||||
|
<p><code>position</code> <br />
|
||||||
|
Where in the grid this module’s widget will be displayed. <br /></p>
|
||||||
|
|
||||||
|
<p><code>refreshInterval</code> <br />
|
||||||
|
How often, in seconds, this module will update its data. <br />
|
||||||
|
Values: A positive integer, <code>0..n</code>.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -70,7 +70,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -2,6 +2,11 @@
|
|||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>http://wtfutil.com/posts/modules/todo/</loc>
|
||||||
|
<lastmod>2018-05-10T12:41:50-07:00</lastmod>
|
||||||
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>http://wtfutil.com/posts/modules/jira/</loc>
|
<loc>http://wtfutil.com/posts/modules/jira/</loc>
|
||||||
<lastmod>2018-05-10T10:44:35-07:00</lastmod>
|
<lastmod>2018-05-10T10:44:35-07:00</lastmod>
|
||||||
@ -79,7 +84,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>http://wtfutil.com/posts/</loc>
|
<loc>http://wtfutil.com/posts/</loc>
|
||||||
<lastmod>2018-05-10T10:44:35-07:00</lastmod>
|
<lastmod>2018-05-10T12:41:50-07:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@ -90,7 +95,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>http://wtfutil.com/</loc>
|
<loc>http://wtfutil.com/</loc>
|
||||||
<lastmod>2018-05-10T10:44:35-07:00</lastmod>
|
<lastmod>2018-05-10T12:41:50-07:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@
|
|||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/opsgenie/">OpsGenie</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/security/">Security</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/textfile/">Text File</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/" class="disabled">Todo</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/todo/">Todo</a></li>
|
||||||
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
<li class="sidebar-list-item-2"><a href="/posts/modules/weather/">Weather</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user