Created
December 14, 2021 20:30
-
-
Save mullr/38ef9d5a425ed245beedf4b127d3489a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use-package posframe) | |
(use-package mini-frame | |
:after posframe | |
:demand | |
:custom | |
(mini-frame-show-parameters | |
(lambda() | |
(let* ((width 1000) | |
(height 300) | |
(info (posframe-poshandler-argbuilder)) | |
(posn (posframe-poshandler-point-top-left-corner | |
`(:posframe-width ,width :posframe-height ,height ,@info)))) | |
`((left . ,(car posn)) | |
(top . ,(cdr posn)) | |
(width . (text-pixels . ,width)) | |
(height . (text-pixels . ,height)))))) | |
(mini-frame-color-shift-step 15) | |
(mini-frame-resize nil) | |
:config | |
(mini-frame-mode)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment