Browse Source

Fix ivy-posframe transparency issue

main
parent
commit
505bc82120
  1. 6
      config/xinitrc
  2. 6
      modules/x11.org

6
config/xinitrc

@ -1,13 +1,11 @@
# Initialization
# Config
# :PROPERTIES: # :PROPERTIES:
# :header-args: :tangle ../config/xinitrc :comments org # :header-args: :tangle ../config/xinitrc :comments org
# :END: # :END:
# My workflow includes launching the window manager with *Xinit*[fn:3], without the use of a display manager, controlling *everything* within Emacs. In addition, compton is used as a display compositor, and slock for a screen lock.
# My workflow includes launching Emacs under X11[fn:1] without the use of a display manager, controlling everything within Emacs, while still providing the functionality of a desktop environment.
compton & compton &
xss-lock -- slock & xss-lock -- slock &
# FIXME! https://github.com/ch11ng/exwm/issues/210#issuecomment-350044271
exec dbus-launch --exit-with-session emacs -mm --debug-init exec dbus-launch --exit-with-session emacs -mm --debug-init

6
modules/x11.org

@ -129,14 +129,14 @@ Emacs supports frame transparency when running under the X Window System[fn:1].
((numberp (cdr alpha)) (cdr alpha)) ((numberp (cdr alpha)) (cdr alpha))
((numberp (cadr alpha)) (cadr alpha))) ((numberp (cadr alpha)) (cadr alpha)))
100) 100)
'(85 . 50) '(100 . 100)))))
'(85 . 80) '(100 . 100)))))
#+end_src #+end_src
Enable frame transparency by default. Enable frame transparency by default.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(set-frame-parameter (selected-frame) 'alpha '(85 . 50))
(add-to-list 'default-frame-alist '(alpha . (85 . 50)))
(set-frame-parameter (selected-frame) 'alpha '(85 . 80))
(add-to-list 'default-frame-alist '(alpha . (85 . 80)))
#+end_src #+end_src
* Shortcuts * Shortcuts

Loading…
Cancel
Save