A few emoji updates.

This commit is contained in:
Storm Dragon
2025-07-31 03:16:02 -04:00
parent 84293db6dc
commit 9ef9d762f4
19 changed files with 380 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "👿"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Angry face with horns emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added angry face with horns to clipboard",
interrupt=False, flush=False
)