diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-01 03:01:13 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-01 03:01:13 -0400 |
commit | c366da7c6406bfbb38bd4d9755739a5856fa42f3 (patch) | |
tree | 1f2fa2ec2f2934c236f7175258267254704a685e /home/.xinitrc | |
parent | Make the 'SSH' label in '$PS1' more visible (diff) | |
download | dotfiles.old-c366da7c6406bfbb38bd4d9755739a5856fa42f3.tar.gz dotfiles.old-c366da7c6406bfbb38bd4d9755739a5856fa42f3.tar.bz2 dotfiles.old-c366da7c6406bfbb38bd4d9755739a5856fa42f3.zip |
Create 'dotfiles/home/.xinitrc'
Since I'm working toward using the same EXWM-based desktop environment on
all my systems, I migth as well syncronize the '.xinitrc' between them.
Diffstat (limited to 'home/.xinitrc')
-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 | ||