Files
daun/modules/wallpaperengine.py
2022-04-08 21:27:26 +03:00

12 lines
333 B
Python

# 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)