ambevar-dotfiles/.exwm

14 lines
554 B
Plaintext
Raw Normal View History

2019-03-27 19:12:51 +01:00
;;; -*- mode: emacs-lisp; -*-
(require 'exwm)
(let ((win (shell-command "conky 2>/dev/null | dzen2 -p -dock -ta l -fn \"DejaVu Sans Mono\" &")))
;; Don't pop the output buffer.
(with-current-buffer (window-buffer win)
2019-10-17 11:38:40 +02:00
;; TODO: Calling fundmental-mode triggers the following error:
;; error in process filter: Wrong type argument: markerp, nil [2 times]
(fundamental-mode) ; So that we don't display it in the shell lister.
2019-03-27 19:12:51 +01:00
(rename-buffer " *Async conky|dzen*"))
(delete-window win))
(exwm-enable)
(server-start)