diff options
| author | filip <“filip.rabiega@gmail.com”> | 2026-01-24 16:03:21 +0100 |
|---|---|---|
| committer | filip <“filip.rabiega@gmail.com”> | 2026-01-24 16:04:49 +0100 |
| commit | 204461150f735bb8234f4e86174978fb5a794de8 (patch) | |
| tree | ec5f687f071a35064823d627a2491ccb25576c7d /.config/x11/xinitrc | |
| parent | 85be0dd1e0267863bdb983bed0780ff06a8e7dff (diff) | |
| download | dotfiles-204461150f735bb8234f4e86174978fb5a794de8.tar.gz dotfiles-204461150f735bb8234f4e86174978fb5a794de8.tar.bz2 dotfiles-204461150f735bb8234f4e86174978fb5a794de8.zip | |
rewrite zshrc
Diffstat (limited to '.config/x11/xinitrc')
| -rw-r--r-- | .config/x11/xinitrc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.config/x11/xinitrc b/.config/x11/xinitrc index 59df04a..b895795 100644 --- a/.config/x11/xinitrc +++ b/.config/x11/xinitrc @@ -1,6 +1,9 @@ #!/bin/sh # xinitrc runs automatically when you run startx. -[ -f /home/filipek/.config/x11/xprofile ] && . /home/filipek/.config/x11/xprofile -[ -f /home/filipek/.config/x11/xinputrc ] && . /home/filipek/.config/x11/xinputrc +: "${XPROFILE:=$HOME/.config/x11/xprofile}" +: "${XINPUTRC:=$HOME/.config/x11/xinputrc}" + +[ -f "$XPROFILE" ] && . "$XPROFILE" +[ -f "$XINPUTRC" ] && . "$XINPUTRC" exec dwm |
