Customize mode-line faces only in graphical environments
authorAmin Bandali <bandali@gnu.org>
Wed, 7 Apr 2021 20:31:34 +0000 (16:31 -0400)
committerAmin Bandali <bandali@gnu.org>
Wed, 7 Apr 2021 20:31:34 +0000 (16:31 -0400)
.emacs.d/init.el

index 5594987..79be3bb 100644 (file)
@@ -444,15 +444,16 @@ This sets each user option VAR's value to the corresponding VALUE.
     (convert-standard-filename "info/") source-directory)))
 
 ;; faces
-(with-eval-after-load 'faces
-  (let* ((grey "#e7e7e7")
-         (darker-grey "#d9d9d9")
-         (box ;; `(:line-width -1 :style released-button)
-          'unspecified))
-    (set-face-attribute 'mode-line nil
-                        :background grey :box box)
-    (set-face-attribute 'mode-line-inactive nil
-                        :background darker-grey :box box)))
+(when (display-graphic-p)
+  (with-eval-after-load 'faces
+    (let* ((grey "#e7e7e7")
+           (darker-grey "#d9d9d9")
+           (box ;; `(:line-width -1 :style released-button)
+            'unspecified))
+      (set-face-attribute 'mode-line nil
+                          :background grey :box box)
+      (set-face-attribute 'mode-line-inactive nil
+                          :background darker-grey :box box))))
 
 \f
 ;;; Useful utilities