From d03059753d028f8bd44c9d69e6acdb41bc449d6f Mon Sep 17 00:00:00 2001
From: Aryadev Chavali <aryadev@aryadevchavali.com>
Date: Tue, 18 Aug 2020 00:43:56 +0100
Subject: +make frame resize pixelwise

On dwm this leads to an issue in Emacs where the frame is slightly off
the max size of the screen which is really annoying.
---
 Emacs/.config/emacs/early-init.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Emacs/.config/emacs/early-init.el b/Emacs/.config/emacs/early-init.el
index 8ed7e5f..a3f07d7 100644
--- a/Emacs/.config/emacs/early-init.el
+++ b/Emacs/.config/emacs/early-init.el
@@ -5,7 +5,8 @@
 
 (setq gc-cons-threshold most-positive-fixnum
       package-enable-at-startup nil
-      frame-inhibit-implied-resize t)
+      frame-inhibit-implied-resize nil
+      frame-resize-pixelwise t)
 (push '(menu-bar-lines . 0) default-frame-alist)
 (push '(tool-bar-lines . 0) default-frame-alist)
 (push '(vertical-scroll-bars) default-frame-alist)
-- 
cgit v1.2.3-13-gbd6f