1
0
Fork 0
forked from nin0/website

Added presence

This commit is contained in:
nin0dev 2024-05-10 18:02:26 -04:00
parent e1c93f4ce3
commit d9b544f7af
2 changed files with 25 additions and 1 deletions

23
index.js Normal file
View file

@ -0,0 +1,23 @@
function onUpdate(data) {
console.log(data)
// set status
const pfp = document.getElementById("pfp");
switch(data["discord_status"]) {
case "online":
pfp.style.borderColor = "var(--online-color)";
break;
case "idle":
pfp.style.borderColor = "var(--idle-color)";
break;
case "dnd":
pfp.style.borderColor = "var(--dnd-color)";
break;
case "offline":
pfp.style.borderColor = "var(--offline-color)";
break;
}
}
LanyardWrapper.connectWebSocket("886685857560539176", onUpdate)
.catch(err => {
console.error(err);
});