From a96f8301a567568e9122d8a600fb783b72ff5ed6 Mon Sep 17 00:00:00 2001
From: Case Duckworth
Date: Tue, 5 Oct 2021 20:05:22 -0500
Subject: Change initial frame setup

---
 early-init.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/early-init.el b/early-init.el
index 2eaa8d8..86f8bb2 100644
--- a/early-init.el
+++ b/early-init.el
@@ -26,7 +26,8 @@
 (require 'acdw-frame)
 
 ;;; Frame settings
-(setq default-frame-alist               
+(setq initial-frame-alist '(fullscreen . maximized)
+      default-frame-alist               
       `((tool-bar-lines . 0)            
         (menu-bar-lines . 0)            
         (vertical-scroll-bars . nil)          
@@ -63,15 +64,14 @@ say, `tool-bar-mode' once to toggle the tool bar back on."
           (defun after-make-frame@setup (&rest args)
             (ignore args)
             (let ((fixed-pitch-faces
-                   '((:font "Fantasque Sans Mono" :height 110)
+                   '((:font "Fantasque Sans Mono" :height 115)
                      (:font "Go Mono" :height 110)
                      (:font "DejaVu Sans Mono" :height 110)
                      (:font "monospace" :height 100)))
                   (variable-pitch-faces
                    '((:font "Inter" :height 120)
                      (:font "Go" :height 120)
-                     (:font "sans-serif"
-                            :height 100))))
+                     (:font "sans-serif" :height 100))))
               (acdw/set-first-face-attribute 'default
                                              fixed-pitch-faces)
               (acdw/set-first-face-attribute 'fixed-pitch
-- 
cgit 1.4.1-21-gabe81


From 4c8feba76a2d98e1df13f69e837c254f011cd15e Mon Sep 17 00:00:00 2001
From: Case Duckworth
Date: Tue, 5 Oct 2021 20:05:39 -0500
Subject: Install emacs-everywhere

---
 init.el | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/init.el b/init.el
index 52eab26..99270af 100644
--- a/init.el
+++ b/init.el
@@ -397,11 +397,6 @@
                      (studlify-region (region-beginning) (region-end))
                    (studlify-word count)))))
   
-  (add-hook 'after-make-frame-functions
-            (defun after-make-frame@maximize (frame)
-              (unless (bound-and-true-p edit-server-frame-p)
-                (toggle-frame-maximized frame))))
-
   (column-number-mode +1))
 
 (setup encoding
@@ -1418,6 +1413,12 @@ specific to most general, they are these:
   ;; (t (apply fn url args))))
   )
 
+(setup (:straight-if emacs-everywhere
+                     (and (executable-find "xclip")
+                          (executable-find "xdotool")
+                          (executable-find "xprop")
+                          (executable-find "xwininfo"))))
+
 (setup (:straight (embark               ; gotta git that fresh fresh
                    :host github
                    :repo "oantolin/embark"))
-- 
cgit 1.4.1-21-gabe81


From b772b5d42aff3c25485b454625aeee5ec2c38ac1 Mon Sep 17 00:00:00 2001
From: Case Duckworth
Date: Tue, 5 Oct 2021 20:18:03 -0500
Subject: Correct bug

---
 early-init.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/early-init.el b/early-init.el
index 86f8bb2..b820144 100644
--- a/early-init.el
+++ b/early-init.el
@@ -26,7 +26,7 @@
 (require 'acdw-frame)
 
 ;;; Frame settings
-(setq initial-frame-alist '(fullscreen . maximized)
+(setq initial-frame-alist '((fullscreen . maximized))
       default-frame-alist               
       `((tool-bar-lines . 0)            
         (menu-bar-lines . 0)            
-- 
cgit 1.4.1-21-gabe81