启动脚本检查是否连接了外部显示器

发布于 2024-10-18 02:11:25 字数 166 浏览 5 评论 0原文

我的第一个问题是;通常我可以通过几次搜索找到答案,但这次不行。

我想编写一个在启动时运行的脚本,以检查外部显示器是否连接到笔记本电脑。

我想用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初相遇 2024-10-25 02:11:25

命令 xrandr 应该可以解决问题:

$ xrandr -q
...
VGA-0 connected 1280x1024+0+26 ...
   ...
LVDS connected 1400x1050+1280+0 ...
   ...
DVI-0 disconnected ...

在 python 脚本中,使用 subprocess 模块,然后在输出字符串中搜索您要查找的屏幕标识符,例如“VGA-0已连接”。

The command xrandr should do the trick:

$ xrandr -q
...
VGA-0 connected 1280x1024+0+26 ...
   ...
LVDS connected 1400x1050+1280+0 ...
   ...
DVI-0 disconnected ...

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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文