summaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-08-25 16:18:56 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-08-25 16:18:56 -0400
commitd73ef3cc7d248d7eba8bc4979d604cf500f2d232 (patch)
tree58265f25ff34658134377d5ebc0351d925888a24 /src/index.tsx
parent189c7b3ad25ec1cfc0fce22047a567786371ddce (diff)
downloaddecky-lsfg-vk-d73ef3cc7d248d7eba8bc4979d604cf500f2d232.tar.gz
decky-lsfg-vk-d73ef3cc7d248d7eba8bc4979d604cf500f2d232.zip
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");
}
};
});