refactor: improve cross-platform and theme consistency

This commit is contained in:
User
2026-06-09 02:22:56 +08:00
parent b4733718d4
commit 75fff1e3a7
7 changed files with 27 additions and 15 deletions

View File

@@ -140,13 +140,24 @@
:host github
:repo "emacs-exwm/xdg-launcher")
:bind
(("s-SPC" . xdg-launcher-run-app))
(("s-SPC" . xdg-launcher-run-app))
:init
(with-eval-after-load 'consult
(unless (memq 'xdg-launcher-consult-source consult-buffer-sources)
(setq consult-buffer-sources
(append consult-buffer-sources '(xdg-launcher-consult-source)))))))
(when *is-mac*
;; launcher
(use-package launcher
:straight
(launcher
:type git
:host github
:repo "xiaoxinghu/launcher.el")
:bind
("s-SPC" . launcher)))
(provide 'init-exwm)
;;; init-exwm.el ends here