diff options
-rw-r--r-- | home/.xinitrc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/home/.xinitrc b/home/.xinitrc new file mode 100644 index 0000000..e4aec78 --- /dev/null +++ b/home/.xinitrc | |||
@@ -0,0 +1,14 @@ | |||
1 | # Disable access control for the current user | ||
2 | xhost +SI:localuser:$USER | ||
3 | |||
4 | # Make Java applications aware this is a non-reparenting window manager | ||
5 | export _JAVA_AWT_WM_NONREPARENTING=1 | ||
6 | |||
7 | # Set default cursor | ||
8 | xsetroot -cursor_name left_ptr | ||
9 | |||
10 | # Set keyboard repeat rate | ||
11 | xset r rate 200 60 | ||
12 | |||
13 | # Start emacs | ||
14 | exec dbus-launch --exit-with-session emacs | ||