| 
									
										
										
										
											2023-02-19 22:43:09 +00:00
										 |  |  | import os | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # The decky plugin module is located at decky-loader/plugin | 
					
						
							| 
									
										
										
										
											2024-06-13 18:11:44 -04:00
										 |  |  | # For easy intellisense checkout the decky-loader code repo | 
					
						
							|  |  |  | # and add the `decky-loader/plugin/imports` path to `python.analysis.extraPaths` in `.vscode/settings.json` | 
					
						
							|  |  |  | import decky | 
					
						
							|  |  |  | import asyncio | 
					
						
							| 
									
										
										
										
											2022-08-24 18:06:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-23 00:42:11 +02:00
										 |  |  | class Plugin: | 
					
						
							| 
									
										
										
										
											2024-06-13 18:11:44 -04:00
										 |  |  |     # A normal method. It can be called from the TypeScript side using @decky/api. | 
					
						
							|  |  |  |     async def add(self, left: int, right: int) -> int: | 
					
						
							| 
									
										
										
										
											2022-04-23 00:42:11 +02:00
										 |  |  |         return left + right | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-13 18:11:44 -04:00
										 |  |  |     async def long_running(self): | 
					
						
							|  |  |  |         await asyncio.sleep(15) | 
					
						
							|  |  |  |         await decky.emit("test_event", "Hello from the backend!", True, 2) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-23 00:42:11 +02:00
										 |  |  |     # Asyncio-compatible long-running code, executed in a task when the plugin is loaded | 
					
						
							|  |  |  |     async def _main(self): | 
					
						
							| 
									
										
										
										
											2024-06-13 18:11:44 -04:00
										 |  |  |         self.loop = asyncio.get_event_loop() | 
					
						
							|  |  |  |         decky.logger.info("Hello World!") | 
					
						
							| 
									
										
										
										
											2023-02-19 22:43:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 18:48:59 -07:00
										 |  |  |     # Function called first during the unload process, utilize this to handle your plugin being removed | 
					
						
							|  |  |  |     async def _unload(self): | 
					
						
							| 
									
										
										
										
											2024-06-13 18:11:44 -04:00
										 |  |  |         decky.logger.info("Goodbye World!") | 
					
						
							| 
									
										
										
										
											2022-04-23 00:42:11 +02:00
										 |  |  |         pass | 
					
						
							| 
									
										
										
										
											2023-02-19 22:43:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-13 18:11:44 -04:00
										 |  |  |     async def start_timer(self): | 
					
						
							|  |  |  |         self.loop.create_task(self.long_running()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-19 22:43:09 +00:00
										 |  |  |     # Migrations that should be performed before entering `_main()`. | 
					
						
							|  |  |  |     async def _migration(self): | 
					
						
							| 
									
										
										
										
											2024-06-13 18:11:44 -04:00
										 |  |  |         decky.logger.info("Migrating") | 
					
						
							| 
									
										
										
										
											2023-02-19 22:43:09 +00:00
										 |  |  |         # Here's a migration example for logs: | 
					
						
							| 
									
										
										
										
											2024-06-13 18:11:44 -04:00
										 |  |  |         # - `~/.config/decky-template/template.log` will be migrated to `decky.decky_LOG_DIR/template.log` | 
					
						
							|  |  |  |         decky.migrate_logs(os.path.join(decky.DECKY_USER_HOME, | 
					
						
							| 
									
										
										
										
											2023-02-19 22:43:09 +00:00
										 |  |  |                                                ".config", "decky-template", "template.log")) | 
					
						
							|  |  |  |         # Here's a migration example for settings: | 
					
						
							| 
									
										
										
										
											2024-06-13 18:11:44 -04:00
										 |  |  |         # - `~/homebrew/settings/template.json` is migrated to `decky.decky_SETTINGS_DIR/template.json` | 
					
						
							|  |  |  |         # - `~/.config/decky-template/` all files and directories under this root are migrated to `decky.decky_SETTINGS_DIR/` | 
					
						
							|  |  |  |         decky.migrate_settings( | 
					
						
							|  |  |  |             os.path.join(decky.DECKY_HOME, "settings", "template.json"), | 
					
						
							|  |  |  |             os.path.join(decky.DECKY_USER_HOME, ".config", "decky-template")) | 
					
						
							| 
									
										
										
										
											2023-02-19 22:43:09 +00:00
										 |  |  |         # Here's a migration example for runtime data: | 
					
						
							| 
									
										
										
										
											2024-06-13 18:11:44 -04:00
										 |  |  |         # - `~/homebrew/template/` all files and directories under this root are migrated to `decky.decky_RUNTIME_DIR/` | 
					
						
							|  |  |  |         # - `~/.local/share/decky-template/` all files and directories under this root are migrated to `decky.decky_RUNTIME_DIR/` | 
					
						
							|  |  |  |         decky.migrate_runtime( | 
					
						
							|  |  |  |             os.path.join(decky.DECKY_HOME, "template"), | 
					
						
							|  |  |  |             os.path.join(decky.DECKY_USER_HOME, ".local", "share", "decky-template")) |