mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-22 21:40:36 +01:00
28 lines
876 B
Python
28 lines
876 B
Python
import subprocess as sb
|
|
from sbapp.plyer.facades import Orientation
|
|
|
|
|
|
class LinuxOrientation(Orientation):
|
|
|
|
def _set_landscape(self, **kwargs):
|
|
self.rotate = 'normal'
|
|
self.screen = sb.check_output(
|
|
"xrandr -q | grep ' connected' | head -n 1 | cut -d ' ' -f1",
|
|
shell=True
|
|
)
|
|
self.screen = self.screen.decode('utf-8').split('\n')[0]
|
|
sb.call(["xrandr", "--output", self.screen, "--rotate", self.rotate])
|
|
|
|
def _set_portrait(self, **kwargs):
|
|
self.rotate = 'left'
|
|
self.screen = sb.check_output(
|
|
"xrandr -q | grep ' connected' | head -n 1 | cut -d ' ' -f1",
|
|
shell=True
|
|
)
|
|
self.screen = self.screen.decode('utf-8').split('\n')[0]
|
|
sb.call(["xrandr", "--output", self.screen, "--rotate", self.rotate])
|
|
|
|
|
|
def instance():
|
|
return LinuxOrientation()
|