mirror of
https://github.com/ralsina/xrandroll.git
synced 2024-11-21 18:42:22 +00:00
Ignore monitors that are disconnected
This commit is contained in:
parent
e0384672dd
commit
b5d1492373
@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "xrandroll"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
description = "A powertool to configure your display"
|
||||
authors = ["Roberto Alsina <roberto.alsina@gmail.com>"]
|
||||
license = "MIT"
|
||||
|
@ -312,7 +312,9 @@ class Window(QObject):
|
||||
data = subprocess.check_output(["xrandr"]).decode("utf-8").splitlines()
|
||||
name = None
|
||||
for line in data:
|
||||
if line and line[0] not in "S \t": # Output line
|
||||
if (
|
||||
line and line[0] not in "S \t" and "disconnected" not in line
|
||||
): # Output line
|
||||
(
|
||||
name,
|
||||
primary,
|
||||
|
Loading…
Reference in New Issue
Block a user