summaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rwxr-xr-xsrc/index.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/index.tsx b/src/index.tsx
index c787035..783914e 100755
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -1,5 +1,6 @@
import { definePlugin } from "decky-frontend-lib";
import React from "react";
+import { FaGlobe } from "react-icons/fa"; // Example icon
function Content() {
return (
@@ -20,6 +21,8 @@ function Content() {
export default definePlugin(() => {
return {
name: "WebPage Viewer",
+ title: <div>WebPage Viewer</div>, // Title shown in Decky
+ icon: <FaGlobe />, // Icon for the plugin
content: <Content />,
onDismount() {},
};