1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Screenshot into readme

This commit is contained in:
Chris Cummer 2018-04-26 14:40:01 -07:00
parent 3c9b846bbc
commit 0441ac6902
2 changed files with 6 additions and 1 deletions

View File

@ -1,10 +1,14 @@
<p align="center"> <p align="center">
<img src="./docs/img/wtf.jpg?raw=true" title="WTF" width="852" height="240") <img src="./docs/img/wtf.jpg?raw=true" title="WTF" width="852" height="240" />
</p> </p>
A personal terminal-based dashboard utility, designed for A personal terminal-based dashboard utility, designed for
displaying infrequently-updating, but very important, daily data. displaying infrequently-updating, but very important, daily data.
<p align="center">
<img src="./docs/img/screenshot_sm.png" title="screenshot" width="800" height="507" />
</p>
## Prerequisites ## Prerequisites
Ensure you have [Go](https://golang.org/doc/install) installed and Ensure you have [Go](https://golang.org/doc/install) installed and

View File

@ -24,6 +24,7 @@ func NewWidget() *Widget {
} }
widget.View.SetWrap(true) widget.View.SetWrap(true)
widget.View.SetWordWrap(true)
return &widget return &widget
} }