/etc/kde4/kdm/Xwilling is in kdm 4:4.11.13-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | #! /bin/sh
# The output of this script is displayed in the chooser window
# (instead of "Willing to manage").
load=`uptime|sed -e 's/^.*load[^0-9]*//'`
nrusers=`who|cut -c 1-8|sort -u|wc -l|sed 's/^[ ]*//'`
s=""; [ "$nrusers" != 1 ] && s=s
echo "${nrusers} user${s}, load: ${load}"
|