summaryrefslogtreecommitdiff
path: root/src/wasp-obs.el
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2024-04-26 01:53:24 -0400
committerLLLL Colonq <llll@colonq>2024-04-26 01:53:24 -0400
commit6fa49e57f7313aad8852ce2721c2fcf7d0cec030 (patch)
tree34a2e4a851c663bc6d71d148e59b59ba345a5fdb /src/wasp-obs.el
parent782c667e824d426b5443591afeefc37d0ae17785 (diff)
Updates
Diffstat (limited to 'src/wasp-obs.el')
-rw-r--r--src/wasp-obs.el15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/wasp-obs.el b/src/wasp-obs.el
index 3c960f12..50bb7942 100644
--- a/src/wasp-obs.el
+++ b/src/wasp-obs.el
@@ -48,6 +48,15 @@
"Toggle the explosion effect."
(w/pub '(monitor obs toggle) (list "Explosion" "Explosion Video")))
+(defun w/obs-toggle-total-clarity ()
+ "Toggle the total clarity effect."
+ (w/pub '(monitor obs toggle) (list "Total Clarity" "Total Clarity Video"))
+ (w/pub '(monitor obs toggle) (list "Main" "Mic")))
+
+(defun w/obs-toggle-activate-nixos ()
+ "Toggle the explosion effect."
+ (w/pub '(monitor obs toggle) (list "Main" "Activate NixOS")))
+
(defun w/obs-set-clickbait-text (msg)
"Change the clickbait text to MSG."
(w/pub '(monitor obs set-text) (list "Red Arrow Text" (w/encode-string (s-trim msg)))))
@@ -63,6 +72,10 @@ Optionally, change text to MSG."
"Toggle the Chasing Dreams effect."
(w/pub '(monitor obs toggle) (list "Chasing Dreams" "Dreams")))
+(defun w/obs-toggle-brazil ()
+ "Toggle the MODCLONK panel."
+ (w/pub '(monitor obs toggle) (list "Main" "Brazil")))
+
(w/defstruct
w/obs-toggle
toggle
@@ -85,6 +98,8 @@ Optionally, change text to MSG."
(cons 'critical-hit (w/make-obs-toggle :toggle #'w/obs-toggle-critical-hit :reset 3))
(cons 'clickbait (w/make-obs-toggle :toggle #'w/obs-toggle-clickbait :reset 31))
(cons 'chase-dreams (w/make-obs-toggle :toggle #'w/obs-toggle-chase-dreams :reset 31))
+ (cons 'total-clarity (w/make-obs-toggle :toggle #'w/obs-toggle-total-clarity :reset 10))
+ (cons 'activate-nixos (w/make-obs-toggle :toggle #'w/obs-toggle-activate-nixos :reset 31))
))
(defun w/obs-activate-toggle (tnm &rest args)