diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-30 03:20:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-30 03:20:36 -0400 |
commit | b32aee49ab27c9571219730795b5b1e280c99cec (patch) | |
tree | ba8d3d98b56359367612d532da294dc59a448b26 /init.el | |
parent | PR #13: Merge `rfc/8/exwm` branch to `stable` branch (diff) | |
parent | FIX: disable superfluous UI elements (diff) | |
download | mmosmacs-b32aee49ab27c9571219730795b5b1e280c99cec.tar.gz mmosmacs-b32aee49ab27c9571219730795b5b1e280c99cec.tar.bz2 mmosmacs-b32aee49ab27c9571219730795b5b1e280c99cec.zip |
Merge `minor-ui-fixes` branch to `stable` branch
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 28 |
1 files changed, 25 insertions, 3 deletions
@@ -59,12 +59,34 @@ | |||
59 | 59 | ||
60 | 60 | ||
61 | ;; --------------------------------------------------------------------- | 61 | ;; --------------------------------------------------------------------- |
62 | ;;; Window Manager / Desktop Environment | 62 | ;;; Graphical Environment |
63 | ;; ------------------------------------- | 63 | ;; ---------------------- |
64 | ;; Emacs is capable of functioning as the entire desktop environment. | 64 | ;; MMOSMacs is intended to be my entire Desktop Environment. |
65 | ;; --------------------------------------------------------------------- | 65 | ;; --------------------------------------------------------------------- |
66 | 66 | ||
67 | ;; --------------------------------- | 67 | ;; --------------------------------- |
68 | ;; Disable superfluous UI elements | ||
69 | ;; ------------------------------- | ||
70 | ;; These UI elements are not useful | ||
71 | ;; for the system I am trying to | ||
72 | ;; make MMOSMacs into. | ||
73 | ;; | ||
74 | ;; Some of these were disabled in | ||
75 | ;; Early Init, but for completion's | ||
76 | ;; sake I disable them here as well. | ||
77 | ;; --------------------------------- | ||
78 | |||
79 | (scroll-bar-mode -1) | ||
80 | (tool-bar-mode -1) | ||
81 | (tooltip-mode -1) | ||
82 | (menu-bar-mode -1) | ||
83 | (set-fringe-mode -1) | ||
84 | (setq use-dialog-box nil | ||
85 | inhibit-startup-message t | ||
86 | initial-scratch-message "") | ||
87 | |||
88 | |||
89 | ;; --------------------------------- | ||
68 | ;; Emacs X Window Manager (EXWM) | 90 | ;; Emacs X Window Manager (EXWM) |
69 | ;; ----------------------------- | 91 | ;; ----------------------------- |
70 | ;; EXWM is a fully-featured | 92 | ;; EXWM is a fully-featured |