New module, :app everywhere
This commit is contained in:
parent
16a495c97d
commit
74613c25e2
6 changed files with 112 additions and 0 deletions
12
modules/app/everywhere/doctor.el
Normal file
12
modules/app/everywhere/doctor.el
Normal file
|
@ -0,0 +1,12 @@
|
|||
;;; app/everywhere/doctor.el -*- lexical-binding: t; -*-
|
||||
|
||||
(when IS-WINDOWS
|
||||
(error! "emacs-everywhere package does not support windows."))
|
||||
|
||||
(when IS-LINUX
|
||||
(let (unmet-deps)
|
||||
(dolist (dep '("xclip" "xdotool" "xprop" "xwininfo"))
|
||||
(unless (executable-find dep)
|
||||
(push dep unmet-deps)))
|
||||
(when unmet-deps
|
||||
(error! "Unmet dependencies: %s" (string-join unmet-deps ", ")))))
|
Loading…
Add table
Add a link
Reference in a new issue