gitextract_g8m113ra/ ├── .dockerignore ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── SECURITY.md │ └── workflows/ │ └── release.yaml ├── .gitignore ├── .goreleaser.yaml ├── Dockerfile ├── Dockerfile.goreleaser ├── LICENSE ├── README.md ├── docs/ │ ├── configuration.md │ ├── custom-api.md │ ├── extensions.md │ ├── glance.yml │ ├── preconfigured-pages.md │ ├── themes.md │ └── v0.7.0-upgrade.md ├── go.mod ├── go.sum ├── internal/ │ └── glance/ │ ├── auth.go │ ├── auth_test.go │ ├── cli.go │ ├── config-fields.go │ ├── config.go │ ├── diagnose.go │ ├── embed.go │ ├── glance.go │ ├── main.go │ ├── static/ │ │ ├── css/ │ │ │ ├── forum-posts.css │ │ │ ├── login.css │ │ │ ├── main.css │ │ │ ├── mobile.css │ │ │ ├── popover.css │ │ │ ├── site.css │ │ │ ├── utils.css │ │ │ ├── widget-bookmarks.css │ │ │ ├── widget-calendar.css │ │ │ ├── widget-clock.css │ │ │ ├── widget-dns-stats.css │ │ │ ├── widget-docker-containers.css │ │ │ ├── widget-group.css │ │ │ ├── widget-markets.css │ │ │ ├── widget-monitor.css │ │ │ ├── widget-reddit.css │ │ │ ├── widget-releases.css │ │ │ ├── widget-rss.css │ │ │ ├── widget-search.css │ │ │ ├── widget-server-stats.css │ │ │ ├── widget-todo.css │ │ │ ├── widget-twitch.css │ │ │ ├── widget-videos.css │ │ │ ├── widget-weather.css │ │ │ └── widgets.css │ │ └── js/ │ │ ├── animations.js │ │ ├── calendar.js │ │ ├── login.js │ │ ├── masonry.js │ │ ├── page.js │ │ ├── popover.js │ │ ├── templating.js │ │ ├── todo.js │ │ └── utils.js │ ├── templates/ │ │ ├── bookmarks.html │ │ ├── calendar.html │ │ ├── change-detection.html │ │ ├── clock.html │ │ ├── custom-api.html │ │ ├── dns-stats.html │ │ ├── docker-containers.html │ │ ├── document.html │ │ ├── extension.html │ │ ├── footer.html │ │ ├── forum-posts.html │ │ ├── group.html │ │ ├── iframe.html │ │ ├── login.html │ │ ├── manifest.json │ │ ├── markets.html │ │ ├── monitor-compact.html │ │ ├── monitor.html │ │ ├── old-calendar.html │ │ ├── page-content.html │ │ ├── page.html │ │ ├── reddit-horizontal-cards.html │ │ ├── reddit-vertical-cards.html │ │ ├── releases.html │ │ ├── repository.html │ │ ├── rss-detailed-list.html │ │ ├── rss-horizontal-cards-2.html │ │ ├── rss-horizontal-cards.html │ │ ├── rss-list.html │ │ ├── search.html │ │ ├── server-stats.html │ │ ├── split-column.html │ │ ├── theme-preset-preview.html │ │ ├── theme-style.gotmpl │ │ ├── todo.html │ │ ├── twitch-channels.html │ │ ├── twitch-games-list.html │ │ ├── v0.7-update-notice-page.html │ │ ├── video-card-contents.html │ │ ├── videos-grid.html │ │ ├── videos-vertical-list.html │ │ ├── videos.html │ │ ├── weather.html │ │ └── widget-base.html │ ├── templates.go │ ├── theme.go │ ├── utils.go │ ├── widget-bookmarks.go │ ├── widget-calendar.go │ ├── widget-changedetection.go │ ├── widget-clock.go │ ├── widget-container.go │ ├── widget-custom-api.go │ ├── widget-dns-stats.go │ ├── widget-docker-containers.go │ ├── widget-extension.go │ ├── widget-group.go │ ├── widget-hacker-news.go │ ├── widget-html.go │ ├── widget-iframe.go │ ├── widget-lobsters.go │ ├── widget-markets.go │ ├── widget-monitor.go │ ├── widget-old-calendar.go │ ├── widget-reddit.go │ ├── widget-releases.go │ ├── widget-repository.go │ ├── widget-rss.go │ ├── widget-search.go │ ├── widget-server-stats.go │ ├── widget-shared.go │ ├── widget-split-column.go │ ├── widget-todo.go │ ├── widget-twitch-channels.go │ ├── widget-twitch-top-games.go │ ├── widget-utils.go │ ├── widget-videos.go │ ├── widget-weather.go │ └── widget.go ├── main.go └── pkg/ └── sysinfo/ └── sysinfo.go