Add the when-not-wm macro

Bu işleme şunda yer alıyor:
Sameer Rahmani 2022-06-27 23:41:24 +01:00
ebeveyn 695d452845
işleme 2a00d784e7
1 değiştirilmiş dosya ile 6 ekleme ve 0 silme

Dosyayı Görüntüle

@ -177,6 +177,12 @@ is non-nil value it means that the function can be called interactively."
`(progn ,@body)
nil))
(defmacro when-not-wm (&rest body)
"Run the BODY only if not in the wm mode."
(if (not (string= (getenv "FG42_WM") "true"))
`(progn ,@body)
nil))
(defmacro fg42/log (tag args)
"If the debug is enabled log the give ARGS."