yeet
This commit is contained in:
12
.config/emacs/modules/app/everywhere/doctor.el
Normal file
12
.config/emacs/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 ", ")))))
|
||||
Reference in New Issue
Block a user