/usr/share/blends/blend-update-menus is in blends-common 0.6.96.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26  | # $Id$
# check if I am a specific user
amI() {
	RET=0
	test `whoami` != "$1" && RET=1
	return ${RET}
}
# The following scripts have historical reasons and are currently not
# used any more. The complete text might be found in version 0.3 of
# the scripts.
# updates user's menu for user $1, indipendently from any Blend
updateUser() {
	RET=0
	SYSUSER=$1
	return ${RET}
}
# updates menu scripts for any user registered in Blend
updateBlend() {
	RET=0
	BLEND=$1
	
	return ${RET}
}
 |