Skip to content

Instantly share code, notes, and snippets.

@marcy
Created March 4, 2012 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcy/1971094 to your computer and use it in GitHub Desktop.
Save marcy/1971094 to your computer and use it in GitHub Desktop.
cocoa emacs の透明度を変更する elisp ref: http://qiita.com/marcy@github/items/ba0d018a03381a964f24
(defun set-alpha (alpha-num)
"set frame parameter 'alpha"
(interactive "nAlpha: ")
(set-frame-parameter nil 'alpha (cons alpha-num '(90))))
(defun set-alpha (alpha-num)
"set frame parameter 'alpha"
(interactive "nAlpha: ")
(set-frame-parameter nil 'alpha (cons alpha-num '(90))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment