フルスクリーン+半透明+4分割

明らかにクソコマンドです。でも便利

;; フルスクリーン+半透明+4分割
(defun my:split ()
  (interactive)
  (when ns-p (progn
    (ns-toggle-fullscreen)
    (my-toggle-alpha)))
  (delete-other-windows)
  (split-window-horizontally)
  (split-window-vertically)
  (other-window 1)
  (other-window 1)
  (split-window-vertically)
  (other-window 1)
  (other-window 1)
)