diff --git a/cmdrunner/widget.go b/cmdrunner/widget.go new file mode 100644 index 00000000..bd147e8c --- /dev/null +++ b/cmdrunner/widget.go @@ -0,0 +1,18 @@ +package cmdrunner + +import ( + "fmt" +) + +// Config is a pointer to the global config object +var Config *config.Config + +type Widget struct { + wtf.TextWidget + + cmd string +} + +func NewWidget() *Widget { + +}