diff options
author | Mattias Andrée <maandree@kth.se> | 2021-07-21 12:08:24 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-07-21 12:08:36 +0200 |
commit | 5db8f26a51195ab9e557709d4b6670c145e7afdd (patch) | |
tree | b672471a4450ab552674fcecbb7809cbc1ce1a75 /xorg-xinit | |
parent | Ignore systemd entry in xinitrc that stops your display from starting (diff) | |
download | dotfiles-5db8f26a51195ab9e557709d4b6670c145e7afdd.tar.gz dotfiles-5db8f26a51195ab9e557709d4b6670c145e7afdd.tar.bz2 dotfiles-5db8f26a51195ab9e557709d4b6670c145e7afdd.tar.xz |
Fix previous commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'xorg-xinit')
-rw-r--r-- | xorg-xinit/xinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xorg-xinit/xinit b/xorg-xinit/xinit index 3d3d0bb..67400c1 100644 --- a/xorg-xinit/xinit +++ b/xorg-xinit/xinit @@ -2,7 +2,7 @@ for f in /etc/X11/xinit/xinitrc.d/*; do if test "$f" = /etc/X11/xinit/xinitrc.d/50-systemd-user.sh; then - # Ignore that file, it causes a catastrophic failure that is hard to locate + : # Ignore that file, it causes a catastrophic failure that is hard to locate elif test -r "$f"; then . -- "$f" fi |