style: Make emacs transparent

Party like it's 2004.
This commit is contained in:
Vincent Ambo 2017-10-15 20:25:08 +02:00
parent 319347e5cc
commit 17e57e42ef

View file

@ -19,11 +19,15 @@
(global-set-key (kbd "C-x C-f") #'helm-find-files)
(helm-mode 1)
; Hide those ugly tool bars
;; Hide those ugly tool bars
(tool-bar-mode 0)
(scroll-bar-mode 0)
(menu-bar-mode 0)
;; Now that I have nice wallpapers, let me see them.
(set-frame-parameter (selected-frame) 'alpha '(97 . 95))
(add-to-list 'default-frame-alist '(alpha . (97 . 95)))
(defun disable-scroll-bar ()
(scroll-bar-mode 0))