blob: 5774dd6b4731fb6c543ada8877f21716ce731dd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
systemctl --user import-environment DISPLAY XAUTHORITY SSH_AGENT_PID SSH_AUTH_SOCK
systemctl --user restart dumpwatch
[[ -f "$XDG_CONFIG_HOME"/X11/Xmodmap ]] && xmodmap "$XDG_CONFIG_HOME"/X11/Xmodmap
exec i3 -c "$XDG_CONFIG_HOME"/i3/config
|