How would I make x11/xconsole go away automatically after XDM logs into the window manager?
xlsclients
and xkill
in .xsession is one method.#!/bin/sh
for i
do
set -- `xwininfo -name "$i"`
case "$4" in
0x*) xkill -id "$4" ;;
esac
done
Why? Works fine for me, but maybe I'm doing something wrong?I thought it required xconsole in the Xsetup_0 file.
What was the procedure to disable the automatic window of xconsole?How would I make x11/xconsole go away automatically after XDM logs into the window manager?
What was the procedure to disable the automatic window of xconsole?
Except, the directory was changed to /usr/local/etc/X11/xdm/.Commenting/deleting the xconsole line in /usr/local/lib/X11/xdm/Xsetup_0
wordedExcept, the directory was changed to /usr/local/etc/X11/xdm/.