Added base daun functionality

This commit is contained in:
BarsTiger
2022-04-08 21:27:26 +03:00
parent da79421bc1
commit 57087f2607
10 changed files with 206 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
# Module to enable and disable wallpaper engine
from modules.process import get_location
import os
def control_we(command: str) -> None:
"""
Control wallpaper engine,
pause, stop, play, mute, unmute
"""
os.system(str(get_location("wallpaper64.exe") or get_location("wallpaper32.exe")) + ' -control ' + command)