diff --git a/.emacs.d/custom.el b/.emacs.d/custom.el index 110c410..734e2ae 100644 --- a/.emacs.d/custom.el +++ b/.emacs.d/custom.el @@ -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) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 1422647..85a0c1af 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -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 - (font-candidate - "Input Mono Narrow:pixelsize=14:weight=normal" - "InputMonoNarrow-14" - "Consolas-10" - "Inconsolata-11" - "Monaco-14")) + (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"))) + "The font I'm using, in graphics mode.") ;; This is just here for playing with things. (set-frame-font my-font-choice) diff --git a/bin/axiom_verge.ps1 b/bin/axiom_verge.ps1 new file mode 100644 index 0000000..3b4d836 --- /dev/null +++ b/bin/axiom_verge.ps1 @@ -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() \ No newline at end of file