I don't know

This commit is contained in:
John Doty 2021-08-22 10:53:15 -07:00
parent 431fb18d89
commit 422b2d3320
3 changed files with 26 additions and 9 deletions

View file

@ -22,7 +22,7 @@
'(company-minimum-prefix-length 1)
'(css-indent-offset 2)
'(custom-safe-themes
'("0568a5426239e65aab5e7c48fa1abde81130a87ddf7f942613bf5e13bf79686b" "d6da24347c813d1635a217d396cf1e3be26484fd4d05be153f3bd2b293d2a0b5" "3dbb18bf06f41012d4525e6c64c392d6cfef06a2f8fe1bf7b565c4e020255466" "8db4b03b9ae654d4a57804286eb3e332725c84d7cdab38463cb6b97d5762ad26" default))
'("0568a5426239e65aab5e7c48fa1abde81130a87ddf7f942613bf5e13bf79686b" "d6da24347c813d1635a217d396cf1e3be26484fd4d05be153f3bd2b293d2a0b5" "7b3ce93a17ce4fc6389bba8ecb9fee9a1e4e01027a5f3532cc47d160fe303d5a" "3dbb18bf06f41012d4525e6c64c392d6cfef06a2f8fe1bf7b565c4e020255466" "8db4b03b9ae654d4a57804286eb3e332725c84d7cdab38463cb6b97d5762ad26" default))
'(fast-lock-cache-directories '("~/flc-cache"))
'(fast-lock-minimum-size nil)
'(fill-column 77)

View file

@ -167,21 +167,28 @@
;; segfaulting on my devserver when it called find-font, and I'll be damned
;; if I'm going to debug it.)
;;
(if (display-graphic-p)
(let ((my-font-choice) (jd-frame-height))
(let ((jd-frame-height))
;; Consolas. (And, to a lesser extent, Inconsolata.)
;;
(defun font-candidate (&rest fonts)
"Return existing font which first match."
(cl-find-if (lambda (f) (find-font (font-spec :name f))) fonts))
(setq my-font-choice
(defvar my-font-choice
(cond
((string-equal (downcase (system-name)) "bifrost")
"InputMonoNarrow-14")
(t
(font-candidate
"Input Mono Narrow:pixelsize=14:weight=normal"
"InputMonoNarrow-14"
"Consolas-10"
"Inconsolata-11"
"Monaco-14"))
"Monaco-14")))
"The font I'm using, in graphics mode.")
;; This is just here for playing with things.
(set-frame-font my-font-choice)

10
bin/axiom_verge.ps1 Normal file
View file

@ -0,0 +1,10 @@
$URL = "com.epicgames.launcher://apps/5e834b926aa547029903e0ae4f649a70%3Aa22fd963146146b1b0f6e0501be37693%3Ab1940ae77a284721957af7515b60308c?action=launch&silent=true"
Write-Output "Starting game..."
Start-Process $URL
Write-Output "Sleeping..."
sleep -seconds 30
Write-Output "Fetching process..."
$process = Get-Process $URL
Write-Output "Waiting for exit..."
$process.WaitForExit()