mirror of
https://github.com/ralsina/xrandroll.git
synced 2024-11-21 18:42:22 +00:00
Basic replica detection
This commit is contained in:
parent
df71c4ba28
commit
f67a4fe683
15
main.py
15
main.py
@ -34,6 +34,19 @@ def parse_monitor(line):
|
||||
)
|
||||
|
||||
|
||||
def is_replica_of(a, b):
|
||||
"""Return True if monitor a is a replica of b.
|
||||
|
||||
Replica means same resolution and position.
|
||||
"""
|
||||
return (
|
||||
a["pos_x"] == b["pos_x"]
|
||||
and a["pos_y"] == b["pos_y"]
|
||||
and a["res_x"] == b["res_x"]
|
||||
and a["res_y"] == b["res_y"]
|
||||
)
|
||||
|
||||
|
||||
class Window(QObject):
|
||||
def __init__(self, ui):
|
||||
super().__init__()
|
||||
@ -132,6 +145,8 @@ class Window(QObject):
|
||||
for mon in self.xrandr_info:
|
||||
if mon != name:
|
||||
self.ui.replicaOf.addItem(mon)
|
||||
if is_replica_of(self.xrandr_info[mon], self.xrandr_info[name]):
|
||||
self.ui.replicaOf.setCurrentText(mon)
|
||||
|
||||
def updateScaleLabels(self):
|
||||
self.ui.horizontalScaleLabel.setText(f"{self.ui.horizontalScale.value()}%")
|
||||
|
Loading…
Reference in New Issue
Block a user