diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-24 17:21:14 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-24 17:21:14 -0400 |
commit | 045ac47f9f37dcad88b0393496b47bb777e6282b (patch) | |
tree | 6aa43d8c8434da64ab3f628771796be116e5256c | |
parent | Use `EXWM` for X window management (diff) | |
download | mmosmacs-045ac47f9f37dcad88b0393496b47bb777e6282b.tar.gz mmosmacs-045ac47f9f37dcad88b0393496b47bb777e6282b.tar.bz2 mmosmacs-045ac47f9f37dcad88b0393496b47bb777e6282b.zip |
Create `xinitrc` template
-rw-r--r-- | xinitrc | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ | |||
1 | # .xinitrc for MMOSMacs | ||
2 | # This script is executed when running the `startx` command. | ||
3 | |||
4 | |||
5 | # Make Java applications aware this is a non-reparenting window manager | ||
6 | export _JAVA_AWT_WM_NONREPARENTING=1 | ||
7 | |||
8 | |||
9 | # Set default cursor | ||
10 | xsetroot -cursor_name left_ptr | ||
11 | |||
12 | |||
13 | # Set keyboard repeat rate | ||
14 | xset r rate 200 60 | ||
15 | |||
16 | |||
17 | # Start emacs | ||
18 | exec dbus-launch --exit-with-session emacs | ||