大家好,我是羊刀仙。
本篇介绍一个非常耐斯的自托管仪表板,可以将你的所有信息放在一个地方。包括:RSS订阅,Reddit子版块帖子,天气,书签,新闻,特定频道的最新油管视频,时钟,日历,股票信息,Twitch频道和热门游戏GitHub发布,存储库,搜索框等。
我的Demo:
项目特点
各种小部件,上面提到过
支持众多主题,样式丰富
X86和ARM平台皆可部署,十分轻量且兼容性强
针对移动设备进行了优化,适配可以说非常棒
部署流程
本篇以威联通NAS为例,其他平台大同小异。
首先,打开文件总管创建一个文件目录,命名为glance,便于今后管理。
对Glance进行配置
Glance的配置通过单个YAML文件完成,修改glance.yml
文件后,需要重新启动Docker容器才能使更改生效。尝试使用无效的配置文件启动服务器将导致错误。
打开威联通的文本编辑工具Text Editor,新建一个档用于写配置,动手能力强的话可以自行查看文档:https://github.com/glanceapp/glance/blob/main/docs/configuration.md#preconfigured-page
官方给的配置代码内容如下:
pages:
- name: Home
columns:
- size: small
widgets:
- type: calendar
- type: rss
limit: 10
collapse-after: 3
cache: 3h
feeds:
- url: https://ciechanow.ski/atom.xml
- url: https://www.joshwcomeau.com/rss.xml
title: Josh Comeau
- url: https://samwho.dev/rss.xml
- url: https://awesomekling.github.io/feed.xml
- url: https://ishadeed.com/feed.xml
title: Ahmad Shadeed
- type: twitch-channels
channels:
- theprimeagen
- cohhcarnage
- christitustech
- blurbs
- asmongold
- jembawls
- size: full
widgets:
- type: hacker-news
- type: videos
channels:
- UCR-DXc1voovS8nhAvccRZhg # Jeff Geerling
- UCv6J_jJa8GJqFwQNgNrMuww # ServeTheHome
- UCOk-gHyjcWZNj3Br4oxwh0A # Techno Tim
- type: reddit
subreddit: selfhosted
- size: small
widgets:
- type: weather
location: London, United Kingdom
- type: markets
markets:
- symbol: SPY
name: S&P 500
- symbol: BTC-USD
name: Bitcoin
- symbol: NVDA
name: NVIDIA
- symbol: AAPL
name: Apple
- symbol: MSFT
name: Microsoft
- symbol: GOOGL
name: Google
- symbol: AMD
name: AMD
- symbol: RDDT
name: Reddit
会得到以下界面:
这不是我想要的,下面是我根据自己需求所修改的界面配置:
评论区