nvidia-xrun
nvidia-xrun copied to clipboard
When has an empty .nvidia-xinitrc xserver will close.
When $HOME has an empty .nvidia-xinitrc, cannot start xorg. lines in nvidia-xrun:
if [ -f "$userxinitrc" ]; then
sh ${userxinitrc} $#
else
if [ $# -gt 0 ]; then
"$*"
fi
fi
revert to the old one:
if [ -f "$userxinitrc" ]; then
sh ${userxinitrc} $#
fi
if [ $# -gt 0 ]; then
"$*"
fi
can fix it.
Hi @wzhy90 , thanks for noticing. I'd like to have the possibility to override the exec in user xinitrc with a parameter. I have some work ongoing on this so i will include the fix to that.