46a47 > DEFAULT_WINDOWSIZE = "1000x700" 158a160 > self.__windowsize = None 234c236 < sandbox [-h] [-[X|M] [-l level ] [-H homedir] [-T tempdir]] [-I includefile ] [-W windowmanager ] [[-i file ] ...] [ -t type ] command --- > sandbox [-h] [-[X|M] [-l level ] [-H homedir] [-T tempdir]] [-I includefile ] [-W windowmanager ] [ -w windowsize ] [[-i file ] ...] [ -t type ] command 236c238 < sandbox [-h] [-[X|M] [-l level ] [-H homedir] [-T tempdir]] [-I includefile ] [-W windowmanager ] [[-i file ] ...] [ -t type ] -S --- > sandbox [-h] [-[X|M] [-l level ] [-H homedir] [-T tempdir]] [-I includefile ] [-W windowmanager ] [ -w windowsize ] [[-i file ] ...] [ -t type ] -S 279a282,285 > parser.add_option("-w", "--windowsize", dest="windowsize", > type="string", default=DEFAULT_WINDOWSIZE, > help="size of the sandbox window") > 284a291 > self.__windowsize = self.__options.windowsize 365,366c372,373 < < cmds = ("/usr/sbin/seunshare -t %s -h %s -- %s /usr/share/sandbox/sandboxX.sh" % (self.__tmpdir, self.__homedir, self.__execcon)).split() --- > > cmds = ("/usr/sbin/seunshare -t %s -h %s -- %s /usr/share/sandbox/sandboxX.sh %s" % (self.__tmpdir, self.__homedir, self.__execcon, self.__windowsize)).split()