tweak(doom-quit): make quit message OS-sensitive

This commit is contained in:
Zardoz 2023-11-23 22:55:13 +00:00 committed by GitHub
parent 1bc5f441f0
commit 574cd32147
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,13 @@
;;; ui/doom-quit/config.el -*- lexical-binding: t; -*- ;;; ui/doom-quit/config.el -*- lexical-binding: t; -*-
(defvar +doom-quit-messages (defvar +doom-quit-messages
'(;; from Doom 1 `(;; from Doom 1
"Please don't leave, there's more demons to toast!" "Please don't leave, there's more demons to toast!"
"Let's beat it -- This is turning into a bloodbath!" "Let's beat it -- This is turning into a bloodbath!"
"I wouldn't leave if I were you. DOS is much worse." ,(format "I wouldn't leave if I were you. %s is much worse."
(if (member system-type '(ms-dos-windows-nt cygwin))
"DOS"
"UNIX"))
"Don't leave yet -- There's a demon around that corner!" "Don't leave yet -- There's a demon around that corner!"
"Ya know, next time you come in here I'm gonna toast ya." "Ya know, next time you come in here I'm gonna toast ya."
"Go ahead and leave. See if I care." "Go ahead and leave. See if I care."