Getting Started on WTF - the terminal dashboard https://wtfutil.com/getting_started/ Recent content in Getting Started on WTF - the terminal dashboard Hugo -- gohugo.io en-us Mon, 21 May 2018 16:11:58 -0700 Installation https://wtfutil.com/getting_started/installation/ Fri, 18 May 2018 09:59:40 -0700 https://wtfutil.com/getting_started/installation/ As a Binary Grab the latest version from here: https://github.com/senorprogrammer/wtf/releases expand it, and cd into the resulting directory. Then run: ./wtf and that should also do it. From Source Download the source code repo and install the dependencies: go get -u github.com/senorprogrammer/wtf cd $GOPATH/src/github.com/senorprogrammer/wtf go install -ldflags="-s -w" make run and that should do it. Glossary https://wtfutil.com/getting_started/glossary/ Tue, 17 Apr 2018 12:34:51 -0700 https://wtfutil.com/getting_started/glossary/ Module A discreet unit of data collection and display. A data interface concept. A package inside the app. Examples: New Relic, Git, Weather. Widget The onscreen representation of a Module. The widget is responsible for being the interface between the app and the data collection. Widgets are defined by a required widget.go file in a Module.