diff --git a/frontend/lib/chat.mjs b/frontend/lib/chat.mjs
index aa53b58..66ebd9a 100644
--- a/frontend/lib/chat.mjs
+++ b/frontend/lib/chat.mjs
@@ -153,13 +153,23 @@ const setupChatboxEvents = (socket) => {
printChatMessage("set-time", "/sync", "b57fdc", syncMessageContent);
handled = true;
break;
+ case "/shrug":
+ socket.send(
+ JSON.stringify({
+ op: "ChatMessage",
+ data: `${args} ¯\\_(ツ)_/¯`.trim(),
+ })
+ );
+ handled = true;
+ break;
case "/help":
const helpMessageContent = document.createElement("span");
helpMessageContent.innerHTML =
"Available commands:
" +
" /help
- display this help message
" +
" /ping [message]
- ping all viewers
" +
- " /sync
- resyncs you with other viewers";
+ " /sync
- resyncs you with other viewers
" +
+ " /shrug
- appends ¯\\_(ツ)_/¯ to your message";
printChatMessage(
"command-message",