Log in and wait 120 minutes, see what happens. ;-)
ps -fp `cat /var/spool/lock/LCK..idleout` will tell you whether it's running.
You could make your own copy of /usr/bin/idleout and modify it, putting the following at line 181:
[tt]GREPFILE=/tmp/grep$$
awk -F: '$1 == "groupname" {print $4}' /etc/group | tr ',' '^J' > $GREPFILE[/tt]
"^J" is actually one control character; enter it in vi by typing Ctrl-V Ctrl-J while in insert mode. Change the previous line 181 to read:
[tt]LANG=C who -u | grep -f $GREPFILE > $TMPFILE[/tt]
And change the previous line 193 to read:
[tt]rm $TMPFILE $GREPFILE[/tt]
It's not foolproof, but it's a start. The first part creates a file containing the names of all members of "groupname", which of course should be changed to the group you want to use.
The second part filters only users that are in that group out of the who -u output. Annihilannic.