14 lines
288 B
Python
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() |