generated from SteamDeckHomebrew/decky-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.py
78 lines (57 loc) · 2.49 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
from typing import List, Optional
from decky_terminal import DeckyTerminal
class Plugin:
decky_terminal = DeckyTerminal()
async def is_server_running(self) -> bool:
return Plugin.decky_terminal.is_running()
async def get_server_port(self) -> int:
return Plugin.decky_terminal.get_server_port()
async def get_terminals(self) -> List[dict]:
terminals = Plugin.decky_terminal.get_terminals()
output = []
for terminal_id, terminal in terminals.items():
result = terminal.serialize()
result["id"] = terminal_id # TODO: should a terminal own its ID?
output.append(result)
return output
async def get_terminal(self, terminal_id: str) -> Optional[dict]:
terminal = Plugin.decky_terminal.get_terminal(terminal_id)
if terminal is None:
return None
return terminal.serialize()
async def set_terminal_title(self, terminal_id: str, title: str) -> bool:
Plugin.decky_terminal.set_terminal_title(terminal_id, title)
async def create_terminal(self, terminal_id=None) -> bool:
await Plugin.decky_terminal.create_terminal(terminal_id)
return True
async def remove_terminal(self, terminal_id) -> bool:
try:
await Plugin.decky_terminal.remove_terminal(terminal_id)
return True
except:
return False
async def change_terminal_window_size(self, terminal_id, rows: int, cols: int) -> bool:
try:
terminal = Plugin.decky_terminal.get_terminal(terminal_id)
if terminal is not None:
await terminal.change_window_size(rows, cols)
return True
return False
except:
return False
async def get_config(self) -> str:
return await Plugin.decky_terminal.get_config()
async def append_config(self, config: dict) -> str:
return await Plugin.decky_terminal.append_config(config)
async def get_shells(self) -> str:
return await Plugin.decky_terminal.get_shells()
async def get_default_shell(self) -> str:
return await Plugin.decky_terminal.get_default_shell()
async def set_default_shell(self, shell: str) -> bool:
return await Plugin.decky_terminal.set_default_shell(shell)
async def _main(self):
await Plugin.decky_terminal.start_server()
async def _unload(self):
await Plugin.decky_terminal.stop_server()
async def _migration(self):
pass