diff --git a/contrib/osx/packages.el b/contrib/osx/packages.el index 088f28859..cc15e22d0 100644 --- a/contrib/osx/packages.el +++ b/contrib/osx/packages.el @@ -7,6 +7,5 @@ which require an initialization must be listed explicitly in the list.") (defun osx/init-pbcopy () (use-package pbcopy - :init - (unless (display-graphic-p) - (turn-on-pbcopy)))) + :if (not (display-graphic-p)) + :init (turn-on-pbcopy)))