LiquidGUI [1.2.0.0]

- Linux Support
This commit is contained in:
2024-12-26 00:43:39 +00:00
parent ca036a5576
commit 040fff0677
4 changed files with 56 additions and 11 deletions
+8
View File
@@ -0,0 +1,8 @@
import platform
os = None
_platform = platform.platform()
if _platform.startswith("Linux"):
os = "Linux"
elif _platform.startswith("Windows"):
os = "Windows"