.exwm 554 B

1234567891011121314
  1. ;;; -*- mode: emacs-lisp; -*-
  2. (require 'exwm)
  3. (let ((win (shell-command "conky 2>/dev/null | dzen2 -p -dock -ta l -fn \"DejaVu Sans Mono\" &")))
  4. ;; Don't pop the output buffer.
  5. (with-current-buffer (window-buffer win)
  6. ;; TODO: Calling fundmental-mode triggers the following error:
  7. ;; error in process filter: Wrong type argument: markerp, nil [2 times]
  8. (fundamental-mode) ; So that we don't display it in the shell lister.
  9. (rename-buffer " *Async conky|dzen*"))
  10. (delete-window win))
  11. (exwm-enable)
  12. (server-start)