blob: 7b28cb283063609414ef04a956c2767f96c18508 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import xorgconfig
xconfig = xorgconfig.readConfig("/etc/X11/xorg.conf")
for screensection in xconfig.getSections("screen"):
print screensection.identifier
print screensection.option
for screensection in xconfig.getSections("device"):
print screensection.option
print screensection.option[1]
print screensection.option[2]
|