Implement a CLI command to change themes. (#136)

* Implement cli based theme applier.

* Remove references to old globalMousePos

* Use direct file path instead.
This commit is contained in:
Jas Singh
2024-08-16 00:49:24 -07:00
committed by GitHub
parent f3a690026b
commit 84e85b168e
6 changed files with 95 additions and 14 deletions

3
globals/mousePos.ts Normal file
View File

@@ -0,0 +1,3 @@
const globalMousePosVar = Variable([0, 0]);
globalThis["globalMousePos"] = globalMousePosVar;