summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-10 17:37:22 -0500
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-10 17:37:22 -0500
commit0a856a7d1ff9b6544a225724ebc5c641c6095f98 (patch)
tree811d2b89e875e2168a8e691b9e19e364fb7d3f78 /src
parentf87044cb68b60e008b777c2359eb671cb09eb6a1 (diff)
downloaddecky-bazzite-buddy-0a856a7d1ff9b6544a225724ebc5c641c6095f98.tar.gz
decky-bazzite-buddy-0a856a7d1ff9b6544a225724ebc5c641c6095f98.zip
re breaking some stuff
Diffstat (limited to 'src')
-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() {},
};