Google Calendar
diff --git a/_site/content/posts/modules/cmdrunner.md b/_site/content/posts/modules/cmdrunner.md
new file mode 100644
index 00000000..8975d2c3
--- /dev/null
+++ b/_site/content/posts/modules/cmdrunner.md
@@ -0,0 +1,60 @@
+---
+title: "Modules: CmdRunner"
+date: 2018-05-17T17:17:10-07:00
+draft: false
+---
+
+Runs a terminal command on a schedule.
+
+## Source Code
+
+```bash
+wtf/cmdrunner/
+```
+
+## Required ENV Variables
+
+None.
+
+## Keyboard Commands
+
+None.
+
+## Configuration
+
+```yaml
+cmdrunner:
+ args: ["-g", "batt"]
+ cmd: "pmset"
+ enabled: true
+ position:
+ top: 6
+ left: 1
+ height: 1
+ width: 3
+ refreshInterval: 30
+```
+
+### Attributes
+
+`args`
+The arguments to the command, with each item as an element in an array.
+Example: for `curl -I cisco.com`, the arguments array would be `["-I", "cisco.com"]`.
+
+`cmd`
+The terminal command to be run, withouth the arguments. Ie: `ping`,
+`whoami`, `curl`.
+
+
+`enabled`
+Determines whether or not this module is executed and if its data displayed onscreen.
+Values: `true`, `false`.
+
+`position`
+Defines where in the grid this module's widget will be displayed.
+
+`refreshInterval`
+How often, in seconds, this module will update its data.
+Values: A positive integer, `0..n`.
+
+
diff --git a/_site/themes/hyde-hyde/layouts/partials/sidebar.html b/_site/themes/hyde-hyde/layouts/partials/sidebar.html
index cab88f91..63ec0339 100644
--- a/_site/themes/hyde-hyde/layouts/partials/sidebar.html
+++ b/_site/themes/hyde-hyde/layouts/partials/sidebar.html
@@ -23,6 +23,7 @@
diff --git a/docs/index.xml b/docs/index.xml
index 06fb8a20..2ac6867c 100644
--- a/docs/index.xml
+++ b/docs/index.xml
@@ -6,11 +6,24 @@
Recent content on WTFHugo -- gohugo.ioen-us
- Wed, 16 May 2018 21:51:23 -0700
+ Thu, 17 May 2018 17:17:10 -0700
+
+ Modules: CmdRunner
+ http://wtfutil.com/posts/modules/cmdrunner/
+ Thu, 17 May 2018 17:17:10 -0700
+
+ http://wtfutil.com/posts/modules/cmdrunner/
+ Runs a terminal command on a schedule.
+Source Code wtf/cmdrunner/ Required ENV Variables None.
+Keyboard Commands None.
+Configuration cmdrunner:args:["-g","batt"]cmd:"pmset"enabled:trueposition:top:6left:1height:1width:3refreshInterval:30 Attributes args The arguments to the command, with each item as an element in an array. Example: for curl -I cisco.com, the arguments array would be ["-I", "cisco.com"].
+cmd The terminal command to be run, withouth the arguments. Ie: ping, whoami, curl. enabled Determines whether or not this module is executed and if its data displayed onscreen.
+
+
Configuration: Attributes
http://wtfutil.com/posts/configuration/attributes/
diff --git a/docs/posts/configuration/attributes/index.html b/docs/posts/configuration/attributes/index.html
index 233a73bc..3db0c0f4 100644
--- a/docs/posts/configuration/attributes/index.html
+++ b/docs/posts/configuration/attributes/index.html
@@ -64,6 +64,7 @@
Configuration: Attributes
diff --git a/docs/posts/index.xml b/docs/posts/index.xml
index 57469f0d..4c3f6876 100644
--- a/docs/posts/index.xml
+++ b/docs/posts/index.xml
@@ -6,11 +6,24 @@
Recent content in Posts on WTFHugo -- gohugo.ioen-us
- Wed, 16 May 2018 21:51:23 -0700
+ Thu, 17 May 2018 17:17:10 -0700
+
+ Modules: CmdRunner
+ http://wtfutil.com/posts/modules/cmdrunner/
+ Thu, 17 May 2018 17:17:10 -0700
+
+ http://wtfutil.com/posts/modules/cmdrunner/
+ Runs a terminal command on a schedule.
+Source Code wtf/cmdrunner/ Required ENV Variables None.
+Keyboard Commands None.
+Configuration cmdrunner:args:["-g","batt"]cmd:"pmset"enabled:trueposition:top:6left:1height:1width:3refreshInterval:30 Attributes args The arguments to the command, with each item as an element in an array. Example: for curl -I cisco.com, the arguments array would be ["-I", "cisco.com"].
+cmd The terminal command to be run, withouth the arguments. Ie: ping, whoami, curl. enabled Determines whether or not this module is executed and if its data displayed onscreen.
+
+
Configuration: Attributes
http://wtfutil.com/posts/configuration/attributes/
diff --git a/docs/posts/modules/bamboohr/index.html b/docs/posts/modules/bamboohr/index.html
index b8a3994c..e0d27ec7 100644
--- a/docs/posts/modules/bamboohr/index.html
+++ b/docs/posts/modules/bamboohr/index.html
@@ -64,6 +64,7 @@
args
+The arguments to the command, with each item as an element in an array.
+Example: for curl -I cisco.com, the arguments array would be ["-I", "cisco.com"].
+
+
cmd
+The terminal command to be run, withouth the arguments. Ie: ping,
+whoami, curl.
+
+
enabled
+Determines whether or not this module is executed and if its data displayed onscreen.
+Values: true, false.
+
+
position
+Defines where in the grid this module’s widget will be displayed.
+
+
refreshInterval
+How often, in seconds, this module will update its data.
+Values: A positive integer, 0..n.