diff options
-rw-r--r-- | README.md | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -6,6 +6,30 @@ core of my computing experience, and is designed to be a | |||
6 | jack-of-all-trades just like me. | 6 | jack-of-all-trades just like me. |
7 | 7 | ||
8 | 8 | ||
9 | ## Installation | ||
10 | |||
11 | First, clone this repository into your `~/.emacs.d` directory. | ||
12 | ```bash | ||
13 | cd | ||
14 | git clone https://github.com/MountainMan1312/MMOSMacs.git .emacs.d | ||
15 | ``` | ||
16 | |||
17 | Next create symlinks to the `xinitrc` and `emacs.desktop` files so X | ||
18 | knows what to do: | ||
19 | ```bash | ||
20 | # Backup your `.xinitrc` file if you feel like it. | ||
21 | # Replace `.xinitrc.old` with whatever you want to name the backup. | ||
22 | mv .xinitrc .xinitrc.old | ||
23 | |||
24 | # Symlink your `.xinitrc` file | ||
25 | ln -s .emacs.d/xinitrc .xinitrc | ||
26 | |||
27 | # Symlink `emacs.desktop` to add MMOSMacs as an entry to your Display | ||
28 | # Manager / login screen. | ||
29 | sudo ln -s .emacs.d/emacs.desktop /usr/share/xsessions/emacs.desktop | ||
30 | ``` | ||
31 | |||
32 | |||
9 | ## Plans | 33 | ## Plans |
10 | 34 | ||
11 | - Non-literate configuration | 35 | - Non-literate configuration |