diff options
author | Bryan Quigley <bryan.quigley@canonical.com> | 2015-03-27 15:53:54 -0400 |
---|---|---|
committer | Adam Stokes <adam.stokes@ubuntu.com> | 2015-03-30 09:29:07 -0400 |
commit | a087fbe9d06a22cda3c5bf4cf7164a2fa9805df4 (patch) | |
tree | 68965a6c247684a531cf599aa34961336ef6dd0f | |
parent | f9c0cbb953a23037cd98b6f6c28abe085bbcfacd (diff) | |
download | sos-a087fbe9d06a22cda3c5bf4cf7164a2fa9805df4.tar.gz |
[x11] Add xrandr and glxinfo output
Adds xrandr --verbose
Adds glxinfo output
Closes: #482
Signed-off-by: Bryan Quigley <bryan.quigley@canonical.com>
Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
-rw-r--r-- | sos/plugins/x11.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sos/plugins/x11.py b/sos/plugins/x11.py index 2a608507..4db7ee39 100644 --- a/sos/plugins/x11.py +++ b/sos/plugins/x11.py @@ -32,5 +32,9 @@ class X11(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): ]) self.add_forbidden_path("/etc/X11/X") self.add_forbidden_path("/etc/X11/fontpath.d") + self.add_cmd_output([ + "glxinfo", + "xrandr --verbose" + ]) # vim: et ts=4 sw=4 |