Sure? Did you copy the header of file 'dbus-script' then, or why does it show the same first lines?
description "dbus-scripts-session" author "Graham Cobb <g+770@cobb.uk.net>" start on started hildon-desktop stop on stopping hildon-desktop console none exec run-standalone.sh /usr/sbin/dbus-scripts --session respawn
#!/bin/sh brightness=$(cat /sys/class/backlight/acx565akm/brightness) keyboard=$(cat /sys/devices/platform/gpio-switch/slide/state) proximity=$(cat /sys/devices/platform/gpio-switch/proximity/state) if [ "$brightness" == "0" -a "$keyboard" == "closed" -a "$proximity" == "open" ]; then echo 10 > /proc/sys/vm/vfs_cache_pressure fi