Drop support for i3

While I first switched to EXWM warily and thinking it would only be temporary,
it seems like this switch is here to stay. It turns out that EXWM was exactly
the integration I've been looking for. How serendipitous it that I found it when
I did.

Thank you, @tazjin.
This commit is contained in:
William Carroll 2019-12-23 11:19:42 +00:00
parent 25ce422abd
commit 7ae17daa98
21 changed files with 5 additions and 1156 deletions

View file

@ -124,7 +124,6 @@
"ef" (lambda () (interactive) (wpc/find-file-split "~/functions.zsh"))
"el" (lambda () (interactive) (wpc/find-file-split "~/variables.zsh"))
"ex" (lambda () (interactive) (wpc/find-file-split "~/.Xresources"))
"ei" (lambda () (interactive) (wpc/find-file-split "~/.config/i3/config.shared"))
"em" (lambda () (interactive) (wpc/find-file-split "~/.tmux.conf"))
"l" #'locate

View file

@ -60,19 +60,5 @@
:config
(general-add-hook 'org-mode-hook (enable org-bullets-mode)))
;; i3, `org-mode' integration
;; Heavily influenced by: https://somethingsomething.us/post/i3_and_orgmode/
;; TODO: Consider generalizing this since we're using "floating".
(defadvice org-switch-to-buffer-other-window
(after supress-window-splitting activate)
"Delete the extra window if we're in a capture frame."
(if (equal "floating" (wpc/frame-name))
(delete-other-windows)))
(add-hook 'org-capture-after-finalize-hook
(lambda ()
(when (equal "floating" (wpc/frame-name))
(delete-frame))))
(provide 'wpc-org)
;;; wpc-org.el ends here