aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/fjresize.py
blob: 52b289159d6d9e2f4600a2354f310628c88e183f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python

import sys
import fjdisplay
import subprocess

usage = """usage: fjresize.py firejail-name displaysize
resize firejail xephyr windows.
fjdisplay.py with no other arguments will list running named firejails with displays.
fjresize.py with only a firejail name will list valid resolutions.
names can be shortend as long its unambiguous.
note: you may need to move the xephyr window for the resize to take effect
example:
    fjresize.py browser 1280x800
"""


if len(sys.argv) == 2:
    out = subprocess.check_output(['xrandr','--display',fjdisplay.getdisplay(sys.argv[1])])
    print(out)
elif len(sys.argv) == 3: 
    out = subprocess.check_output(['xrandr','--display',fjdisplay.getdisplay(sys.argv[1]),'--output','default','--mode',sys.argv[2]])
    print(out)
else:
    print(usage)