从 bash 脚本动态更改桌面背景

从 bash 脚本动态更改桌面背景

是否可以在黑屏时通过列表中的随机短语在一段时间内更改 GNOME 桌面背景?这会严重占用 CPU 并消耗电池寿命吗?

答案1

这可以通过使用 中的可缩放矢量图形轻松完成Inkscape。绘制一个黑框,添加具有所需颜色和大小的文本元素,REPLACEMENT在其中输入文本,然后将其保存为/path/to/template.svg

然后在你的脚本中执行

sed 's/REPLACEMENT/your text/' < /path/to/template.svg > /tmp/background.svg
gconftool-2 --type string --set  /desktop/gnome/background/picture_filename /tmp/background.svg

相关内容