Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的目标是在没有 xterm 的 xinit 中显示纯色背景,全屏纯色背景就可以了。我意识到我可以为此目的使用 xsetroot -solid color,但 xterm 仍然存在。xinit ./mplayer *mp4我也知道我可以使用“ ”在 xinit 中运行全屏视频
xinit ./mplayer *mp4
我尝试对 xsetroot 使用相同的解决方法
xinit /usr/bin/xsetroot -solid green
但这不起作用。
任何人都知道任何解决方法来实现我上面提到的目标?
非常感谢您的意见。
尝试:
xinit ; DISPLAY=:0 /usr/bin/xsetroot -solid green
或创建.xinitrc一个
.xinitrc
/usr/bin/xsetroot -solid green &
在里面。
高温高压