1
0
mirror of https://github.com/taigrr/wtf synced 2026-03-26 00:22:21 -07:00

Added widget for blockfolio

This commit is contained in:
Andrew
2018-06-10 01:48:01 +03:00
parent 77823419b5
commit e633d4d617
2 changed files with 115 additions and 5 deletions

14
wtf.go
View File

@@ -6,20 +6,17 @@ import (
"os"
"time"
"github.com/gdamore/tcell"
"github.com/olebedev/config"
"github.com/radovskyb/watcher"
"github.com/rivo/tview"
"github.com/andrewzolotukhin/wtf/bamboohr"
"github.com/andrewzolotukhin/wtf/bargraph"
"github.com/andrewzolotukhin/wtf/blockfolio"
"github.com/andrewzolotukhin/wtf/clocks"
"github.com/andrewzolotukhin/wtf/cmdrunner"
"github.com/andrewzolotukhin/wtf/cryptoexchanges/bittrex"
"github.com/andrewzolotukhin/wtf/cryptoexchanges/cryptolive"
"github.com/andrewzolotukhin/wtf/gcal"
"github.com/andrewzolotukhin/wtf/gspreadsheets"
"github.com/andrewzolotukhin/wtf/git"
"github.com/andrewzolotukhin/wtf/github"
"github.com/andrewzolotukhin/wtf/gspreadsheets"
"github.com/andrewzolotukhin/wtf/help"
"github.com/andrewzolotukhin/wtf/ipinfo"
"github.com/andrewzolotukhin/wtf/jira"
@@ -34,6 +31,10 @@ import (
"github.com/andrewzolotukhin/wtf/todo"
"github.com/andrewzolotukhin/wtf/weather"
"github.com/andrewzolotukhin/wtf/wtf"
"github.com/gdamore/tcell"
"github.com/olebedev/config"
"github.com/radovskyb/watcher"
"github.com/rivo/tview"
)
/* -------------------- Functions -------------------- */
@@ -210,6 +211,8 @@ func addWidget(app *tview.Application, pages *tview.Pages, widgetName string) {
Widgets = append(Widgets, todo.NewWidget(app, pages))
case "weather":
Widgets = append(Widgets, weather.NewWidget(app, pages))
case "blockfolio":
Widgets = append(Widgets, blockfolio.NewWidget(app, pages))
default:
}
}
@@ -240,6 +243,7 @@ func makeWidgets(app *tview.Application, pages *tview.Pages) {
textfile.Config = Config
todo.Config = Config
weather.Config = Config
blockfolio.Config = Config
wtf.Config = Config
mods, _ := Config.Map("wtf.mods")