Files
sunshine-snake-glue/pkg/wayland_display_manager/plasma/__init__.py
T
2026-08-15 23:56:17 +12:00

16 lines
290 B
Python

import os
from ..abstracts import AbstractDisplay
class Display(AbstractDisplay):
def get_modes(self):
pass
def set_mode(self, modeline: str):
pass
@staticmethod
def detect():
return "plasma" in os.environ.get("XDG_CURRENT_DESKTOP", "").lower()