diff --git a/xvfbwrapper/xvfbwrapper.py b/xvfbwrapper/xvfbwrapper.py index d01f5e5..c157aa6 100644 --- a/xvfbwrapper/xvfbwrapper.py +++ b/xvfbwrapper/xvfbwrapper.py @@ -1,11 +1,14 @@ #!/usr/bin/env python # -# wrapper for running display inside X virtual framebuffer (Xvfb) # # - inspired by PyVirtualDisplay: http://pypi.python.org/pypi/PyVirtualDisplay # - Corey Goldberg, 2012 +"""wrapper for running display inside X virtual framebuffer (Xvfb)""" + + + import os import fnmatch import random @@ -16,7 +19,7 @@ import time class Xvfb(object): - def __init__(self, width=1024, height=768, colordepth=24): + def __init__(self, width=800, height=680, colordepth=24): self.width = width self.height = height self.colordepth = colordepth