schBenedikt revised this gist . Go to revision
1 file changed, 65 insertions
glance.yml(file created)
| @@ -0,0 +1,65 @@ | |||
| 1 | + | pages: | |
| 2 | + | - name: Home | |
| 3 | + | columns: | |
| 4 | + | - size: small | |
| 5 | + | widgets: | |
| 6 | + | - type: calendar | |
| 7 | + | ||
| 8 | + | - type: rss | |
| 9 | + | limit: 10 | |
| 10 | + | collapse-after: 3 | |
| 11 | + | cache: 3h | |
| 12 | + | feeds: | |
| 13 | + | - url: https://ciechanow.ski/atom.xml | |
| 14 | + | - url: https://www.joshwcomeau.com/rss.xml | |
| 15 | + | title: Josh Comeau | |
| 16 | + | - url: https://samwho.dev/rss.xml | |
| 17 | + | - url: https://awesomekling.github.io/feed.xml | |
| 18 | + | - url: https://ishadeed.com/feed.xml | |
| 19 | + | title: Ahmad Shadeed | |
| 20 | + | ||
| 21 | + | - type: twitch-channels | |
| 22 | + | channels: | |
| 23 | + | - theprimeagen | |
| 24 | + | - cohhcarnage | |
| 25 | + | - christitustech | |
| 26 | + | - blurbs | |
| 27 | + | - asmongold | |
| 28 | + | - jembawls | |
| 29 | + | ||
| 30 | + | - size: full | |
| 31 | + | widgets: | |
| 32 | + | - type: hacker-news | |
| 33 | + | ||
| 34 | + | - type: videos | |
| 35 | + | channels: | |
| 36 | + | - UCR-DXc1voovS8nhAvccRZhg # Jeff Geerling | |
| 37 | + | - UCv6J_jJa8GJqFwQNgNrMuww # ServeTheHome | |
| 38 | + | - UCOk-gHyjcWZNj3Br4oxwh0A # Techno Tim | |
| 39 | + | ||
| 40 | + | - type: reddit | |
| 41 | + | subreddit: selfhosted | |
| 42 | + | ||
| 43 | + | - size: small | |
| 44 | + | widgets: | |
| 45 | + | - type: weather | |
| 46 | + | location: London, United Kingdom | |
| 47 | + | ||
| 48 | + | - type: markets | |
| 49 | + | markets: | |
| 50 | + | - symbol: SPY | |
| 51 | + | name: S&P 500 | |
| 52 | + | - symbol: BTC-USD | |
| 53 | + | name: Bitcoin | |
| 54 | + | - symbol: NVDA | |
| 55 | + | name: NVIDIA | |
| 56 | + | - symbol: AAPL | |
| 57 | + | name: Apple | |
| 58 | + | - symbol: MSFT | |
| 59 | + | name: Microsoft | |
| 60 | + | - symbol: GOOGL | |
| 61 | + | name: Google | |
| 62 | + | - symbol: AMD | |
| 63 | + | name: AMD | |
| 64 | + | - symbol: RDDT | |
| 65 | + | name: Reddit | |
schBenedikt revised this gist . Go to revision
1 file changed, 10 insertions
docker-compose.yml(file created)
| @@ -0,0 +1,10 @@ | |||
| 1 | + | services: | |
| 2 | + | glance: | |
| 3 | + | image: glanceapp/glance | |
| 4 | + | volumes: | |
| 5 | + | - /glance/glance.yml:/app/glance.yml | |
| 6 | + | - /etc/timezone:/etc/timezone:ro | |
| 7 | + | - /etc/localtime:/etc/localtime:ro | |
| 8 | + | ports: | |
| 9 | + | - 8080:8080 | |
| 10 | + | restart: unless-stopped | |