LoginSignup
9
6

More than 5 years have passed since last update.

cocoa emacs の透明度を変更する elisp

Last updated at Posted at 2012-12-26

M-x set-alpha で mini buffer に透明度を入力すると(80とか90とか)変更できるよ。

emacs.el
(defun set-alpha (alpha-num)
  "set frame parameter 'alpha"
  (interactive "nAlpha: ")
  (set-frame-parameter nil 'alpha (cons alpha-num '(90))))
9
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
6