no need for parsing neofetch when builtins exist :3

This commit is contained in:
Miranda Marquez 2024-07-17 19:30:14 -08:00
parent 0b0115228b
commit eb6282b304

View File

@ -66,19 +66,11 @@ console."
(pixel-scroll-precision-mode t)
(pixel-scroll-mode t))
;; Size of text. おまえ わ もう しんでいる.
;; (if (executable-find "neofetch")
;; (let* ((resolution (mapcar #'string-to-number
;; (split-string
;; (cadr (split-string
;; (shell-command-to-string
;; "neofetch resolution"))) "x")))
;; (resx (car resolution))
;; (resy (cadr resolution))
;; (font-height (/ resy 11)))
;; (set-face-attribute 'fixed-pitch nil :height font-height)
;; (set-face-attribute 'default nil :height font-height)
;; (set-face-attribute 'variable-pitch nil :height (+ font-height 10))))
)
(let* ((resy (display-pixel-height))
(font-height (/ resy 8))) ; gonna be different on diff machines 💀
(set-face-attribute 'fixed-pitch nil :height font-height)
(set-face-attribute 'default nil :height font-height)
(set-face-attribute 'variable-pitch nil :height (+ font-height 10))))
(defun toggle-ja-input ()
"Switch between english and japanese. Not broken."