diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-09-22 09:14:57 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-09-22 09:14:57 -0400 |
| commit | a90e1db25641a47ecc738f2a053d8da571474e7f (patch) | |
| tree | afd0af21f3dc720f0455484d02c5120d0957e36f | |
| parent | 40a73b4483500aa94a5e7c3c477b4ca75224de67 (diff) | |
| download | decky-lsfg-vk-a90e1db25641a47ecc738f2a053d8da571474e7f.tar.gz decky-lsfg-vk-a90e1db25641a47ecc738f2a053d8da571474e7f.zip | |
fix: nerd stuff modal lsfg script read and path
| -rw-r--r-- | package.json | 2 | ||||
| -rw-r--r-- | py_modules/lsfg_vk/installation.py | 8 | ||||
| -rwxr-xr-x | src/index.tsx | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/package.json b/package.json index 7b4da88..5821868 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "decky-lsfg-vk", - "version": "0.10.9", + "version": "0.10.10", "description": "Use Lossless Scaling on the Steam Deck using the lsfg-vk vulkan layer", "type": "module", "scripts": { diff --git a/py_modules/lsfg_vk/installation.py b/py_modules/lsfg_vk/installation.py index 04ffb33..3b47be0 100644 --- a/py_modules/lsfg_vk/installation.py +++ b/py_modules/lsfg_vk/installation.py @@ -210,6 +210,14 @@ class InstallationService(BaseService): self._write_file(self.lsfg_launch_script_path, script_content, 0o755) self.log.info(f"Created lsfg launch script at {self.lsfg_launch_script_path}") + def get_launch_script_path(self) -> str: + """Get the path to the lsfg launch script + + Returns: + String path to the launch script file + """ + return str(self.lsfg_launch_script_path) + def check_installation(self) -> InstallationCheckResponse: """Check if lsfg-vk is already installed diff --git a/src/index.tsx b/src/index.tsx index 070e853..799f2ff 100755 --- a/src/index.tsx +++ b/src/index.tsx @@ -8,9 +8,9 @@ export default definePlugin(() => { return { // The name shown in various decky menus - name: "decky-lsfg-vk", + name: "Decky LSFG-VK", // The element displayed at the top of your plugin's menu - titleView: <div className={staticClasses.Title}>decky-lsfg-vk</div>, + titleView: <div className={staticClasses.Title}>Decky LSFG-VK</div>, // Always render to retain state when panel is toggled alwaysRender: true, // The content of your plugin's menu |
