summaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-08-25 16:37:05 -0400
committerGitHub <noreply@github.com>2025-08-25 16:37:05 -0400
commit3f6fdd9f0e565b72402032a5381567fd5f7e9793 (patch)
treeff0a045d3058a76e72bcf73d91effc26264cb327 /src/index.tsx
parent189c7b3ad25ec1cfc0fce22047a567786371ddce (diff)
parent026e58d6966aa8596c791455bffa54cd04c025ef (diff)
downloaddecky-lsfg-vk-3f6fdd9f0e565b72402032a5381567fd5f7e9793.tar.gz
decky-lsfg-vk-3f6fdd9f0e565b72402032a5381567fd5f7e9793.zip
Merge pull request #161 from xXJSONDeruloXx/rebrandv0.10.6
initial rename work
Diffstat (limited to 'src/index.tsx')
-rwxr-xr-xsrc/index.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 785ecf5..070e853 100755
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -4,13 +4,13 @@ import { GiPlasticDuck } from "react-icons/gi";
import { Content } from "./components";
export default definePlugin(() => {
- console.log("Lossless Scaling plugin initializing");
+ console.log("decky-lsfg-vk plugin initializing");
return {
// The name shown in various decky menus
- name: "Lossless Scaling",
+ name: "decky-lsfg-vk",
// The element displayed at the top of your plugin's menu
- titleView: <div className={staticClasses.Title}>Lossless Scaling</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
@@ -19,7 +19,7 @@ export default definePlugin(() => {
icon: <GiPlasticDuck />,
// The function triggered when your plugin unloads
onDismount() {
- console.log("Lossless Scaling unloading");
+ console.log("decky-lsfg-vk unloading");
}
};
});