summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Shoshin Shangreaux <shoshin@cicadas.surf>2023-06-03 11:59:35 -0500
committercolin <colin@cicadas.surf>2023-06-03 10:05:18 -0700
commitabc9190cdfc179c199cc8bc694cbd5add875ad77 (patch)
treeacf3eeac5c4cd467fbc6cba85079e2b6f1410fdc
parent8407734c251823bf3a88ab63aaa1c0a5da57753c (diff)
Add: set Monospace font before each image; more comp turn offs
-rw-r--r--fussy.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/fussy.el b/fussy.el
index 06502a1..ef67e32 100644
--- a/fussy.el
+++ b/fussy.el
@@ -1,4 +1,6 @@
-(setq no-byte-compile t)
+(setq no-byte-compile t
+ package-native-compile nil
+ native-comp-always-compile nil)
(require 'cl-lib)
(require 'package)
@@ -105,6 +107,7 @@ the theme came from."
(progn
(find-file file)
(delete-other-windows)
+ (set-frame-font "Monospace")
(sleep-for 1)
(fussy-screenshot-svg svg-file))
(error (push (cons theme file) failed-to-generate-image))))))))