This commit is contained in:
Richard Neumann 2019-06-08 08:51:21 +02:00
parent df32a93912
commit 72733caa7b

View file

@ -68,15 +68,15 @@ def notify_tablet_mode():
def toggle_mode(notify): def toggle_mode(notify):
"""Toggles between laptop and tablet mode.""" """Toggles between laptop and tablet mode."""
if systemctl('status', LAPTOP_MODE_SERVICE): if systemctl('status', TABLET_MODE_SERVICE):
systemctl('stop', LAPTOP_MODE_SERVICE, root=True) systemctl('stop', TABLET_MODE_SERVICE, root=True)
systemctl('start', TABLET_MODE_SERVICE, root=True) systemctl('start', LAPTOP_MODE_SERVICE, root=True)
if notify: if notify:
notify_tablet_mode() notify_tablet_mode()
else: else:
systemctl('stop', TABLET_MODE_SERVICE, root=True) systemctl('stop', LAPTOP_MODE_SERVICE, root=True)
systemctl('start', LAPTOP_MODE_SERVICE, root=True) systemctl('start', TABLET_MODE_SERVICE, root=True)
if notify: if notify:
notify_laptop_mode() notify_laptop_mode()