1
0
mirror of https://github.com/HorlogeSkynet/archey4 synced 2025-05-15 04:00:13 +02:00

[WINDOW_MANAGER] Adds support for Windows (Desktop Window Manager)

This commit is contained in:
Samuel FORESTIER 2024-04-14 19:09:46 +02:00 committed by Samuel FORESTIER
parent 368c9543d1
commit cefa1866d4
2 changed files with 3 additions and 0 deletions

@ -10,6 +10,7 @@ and this project (partially) adheres to [Semantic Versioning](https://semver.org
- `Model` support for Raspberry Pi 5+
- `none` logo style to completely hide distribution logo
- AppArmor confinement profile (included in Debian and AUR packages)
- `WindowManager` support for Windows
### Changed
- `Model` honor `/proc/device-tree/model` when it exists

@ -81,6 +81,8 @@ class WindowManager(Entry):
else:
if platform.system() == "Darwin":
name = "Quartz Compositor"
elif platform.system() == "Windows":
name = "Desktop Window Manager"
display_server_protocol = DSP_DICT.get(os.getenv("XDG_SESSION_TYPE", ""))