启动脚本检查是否连接了外部显示器
我的第一个问题是;通常我可以通过几次搜索找到答案,但这次不行。
我想编写一个在启动时运行的脚本,以检查外部显示器是否连接到笔记本电脑。
我想用 python 编写脚本。
我使用的是 32 位 Ubuntu 10.04。我四处搜寻但找不到任何有用的东西。有什么建议吗?谢谢
My first question here; normally I can find answers with a couple searches, but not this time.
I want to write a script that will run on start up to check if an external monitor is attached to a laptop.
I would like write the script in python.
I'm using 32-bit Ubuntu 10.04. I've searched around but can't really find anything useful. Any recommendations? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
命令
xrandr
应该可以解决问题:在 python 脚本中,使用 subprocess 模块,然后在输出字符串中搜索您要查找的屏幕标识符,例如“VGA-0已连接”。
The command
xrandr
should do the trick:Inside your python script, run this command using the subprocess module, then search the output string for the screen identifier you're looking for, e.g. "VGA-0 connected".