mirror of
https://github.com/LazoCoder/Pokemon-Terminal
synced 2024-11-23 20:33:08 +00:00
49 lines
1.2 KiB
Python
49 lines
1.2 KiB
Python
# Used for creating, running and analyzing applescript and bash scripts.
|
|
|
|
import os
|
|
import sys
|
|
import subprocess
|
|
|
|
from adapter import identify
|
|
|
|
osa_script_fmt = """tell application "System Events"
|
|
\ttell current desktop
|
|
\t\tset picture to "{}"
|
|
\tend tell
|
|
end tell"""
|
|
|
|
|
|
def clear_terminal():
|
|
adapter = identify()
|
|
adapter.clear()
|
|
|
|
|
|
def change_terminal(pokemon):
|
|
adapter = identify()
|
|
adapter.set_pokemon(pokemon)
|
|
|
|
|
|
def __run_osascript(stream):
|
|
p = subprocess.Popen(['osascript'], stdout=subprocess.PIPE, stdin=subprocess.PIPE)
|
|
p.stdin.write(stream)
|
|
p.communicate()
|
|
p.stdin.close()
|
|
|
|
|
|
def change_wallpaper(pokemon):
|
|
if sys.platform == "darwin":
|
|
script = osa_script_fmt.format(pokemon.get_path())
|
|
__run_osascript(str.encode(script))
|
|
elif sys.platform == "linux":
|
|
os.system(__linux_create_wallpaper_script(pokemon))
|
|
|
|
|
|
def __linux_create_wallpaper_script(pokemon):
|
|
# If its gnome... aka GDMSESSION=gnome-xorg, etc.
|
|
if "gnome" in os.environ.get("GDMSESSION"):
|
|
fmt = 'gsettings set org.gnome.desktop.background picture-uri "file://{}"'
|
|
return fmt.format(pokemon.get_path())
|
|
#elif condition of KDE...
|
|
else:
|
|
print("Window manager not supported ")
|
|
exit(1)
|