diff options
author | 2019-09-06 15:30:22 -0400 | |
---|---|---|
committer | 2019-09-06 15:31:07 -0400 | |
commit | 996bebf6aa20839740113d8509eb49e82ced5966 (patch) | |
tree | 600253eb036b0ea85405cfe9788b733f3d281e86 /.emacs.d/init.el | |
parent | a3875d35f5e11fa71af6bd7568ec86a76276aacf (diff) | |
download | configs-996bebf6aa20839740113d8509eb49e82ced5966.tar.gz configs-996bebf6aa20839740113d8509eb49e82ced5966.tar.xz configs-996bebf6aa20839740113d8509eb49e82ced5966.zip |
emacs,shell: start xfce4-notifyd until i fix eosd’s build
Diffstat (limited to '')
-rw-r--r-- | .emacs.d/init.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 6609f96..df753b4 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1899,6 +1899,16 @@ This function is intended for use with `ivy-ignore-buffers'." (dmenu-prompt-string "run: ") (dmenu-save-file (b/var "dmenu-items"))) +(use-package eosd + ;; TODO: fix build by properly building the eosd-pixbuf.c module + ;; e.g. see https://github.com/raxod502/straight.el/issues/386 + :disabled + :straight (:host github :repo "clarete/eosd") + :demand + :after exwm + :config + (eosd-start)) + ;;; Email (with Gnus) |