summaryrefslogtreecommitdiff
path: root/elchemy-splash.el
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2024-06-12 23:17:41 -0700
committerChristian Cunningham <cc@localhost>2024-06-12 23:17:41 -0700
commitb0c87544fe0c8b103354904370445757e05b9bab (patch)
treef92092e6a684501ba115631cecd87054e8c29d4a /elchemy-splash.el
parentdafe93397ae082eff584fd27762fbc0556067af6 (diff)
Restructuring
- Break functions out to their own files - Move user settings to its own file - Move dashboard to its own file - Remove old splash - Don't hardcode executables
Diffstat (limited to 'elchemy-splash.el')
-rw-r--r--elchemy-splash.el11
1 files changed, 0 insertions, 11 deletions
diff --git a/elchemy-splash.el b/elchemy-splash.el
deleted file mode 100644
index dbc8fd0..0000000
--- a/elchemy-splash.el
+++ /dev/null
@@ -1,11 +0,0 @@
-(switch-to-buffer "*splash*")
-(with-current-buffer "*splash*"
- (let* ((message "Welcome to nEmacs")
- (message-len (length message)))
- (insert
- (concat
- (make-string (/ (- (window-total-width) message-len) 2) ? )
- message
- "\n"))))
-
-(provide 'elchemy-splash)