blob: 66cc62d9ec7aaa73fd7a5e350394f9253dddb948 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Disable access control for the current user
xhost +SI:localuser:$USER
# Make Java applications aware this is a non-reparenting window manager
export _JAVA_AWT_WM_NONREPARENTING=1
# Set default cursor
xsetroot -cursor_name XC_crosshair
# Set keyboard repeat rate
xset r rate 200 60
# Set some keys
setxkbmap -option caps:super
# Start emacs
exec dbus-launch --exit-with-session emacs --debug-init
|