From 0d43159607e57bed580dd5452672bad412afc751 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 6 Jan 2020 15:07:13 -0500 Subject: [PATCH] Disable ns-auto-titlebar & xclip properly on other OSes --- core/packages.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/packages.el b/core/packages.el index 62a7330e8..89dda2546 100644 --- a/core/packages.el +++ b/core/packages.el @@ -17,7 +17,8 @@ (package! better-jumper) (package! dtrt-indent) (package! helpful) -(package! ns-auto-titlebar :ignore (not IS-MAC)) +(when IS-MAC + (package! ns-auto-titlebar)) (package! pcre2el) (package! smartparens) (package! so-long @@ -34,7 +35,8 @@ ;; Use my fork of ws-butler, which has a few choice improvements and ;; optimizations (the original has been abandoned). :recipe (:host github :repo "hlissner/ws-butler")) -(package! xclip :ignore IS-WINDOWS) +(unless IS-WINDOWS + (package! xclip)) ;; core-projects.el (package! projectile)