Files
sunshine-snake-glue/pkg/wayland_display_manager/plasma/__init__.py
T
2026-08-15 16:46:58 +12:00

14 lines
288 B
Python

from ..abstracts import AbstractDisplay
import os
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()