diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-06-05 22:12:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-05 22:12:10 -0400 |
commit | 9c6159ac3993dcd52b34ccb5d5693681c688c75e (patch) | |
tree | ff5d5fd3c6ab2b7319a6aafaf1f3a450a57c4010 /.xinitrc | |
parent | Fix window management keybinds for EXWM (diff) | |
parent | Mass cleanup of mistakes, bad idea but fuck it (diff) | |
download | mmosmacs-9c6159ac3993dcd52b34ccb5d5693681c688c75e.tar.gz mmosmacs-9c6159ac3993dcd52b34ccb5d5693681c688c75e.tar.bz2 mmosmacs-9c6159ac3993dcd52b34ccb5d5693681c688c75e.zip |
Merge `cleanup-everything` branch to `stable` branch
Diffstat (limited to '.xinitrc')
-rw-r--r-- | .xinitrc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.xinitrc b/.xinitrc new file mode 100644 index 0000000..795714b --- /dev/null +++ b/.xinitrc | |||
@@ -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 | ||