seguendo il link ero riuscito a far andare il blank screen:
Fn + F3 to turn display backlight off/on:
* Edit or create the file /etc/acpi/events/blank
Code:
event=ibm/hotkey HKEY 00000080 00001003
action=/etc/acpi/actions/blank.sh
* Edit or create the file /etc/acpi/actions/blank.sh
Code:
#!/bin/bash
RADEONTOOL='/usr/sbin/radeontool'
STATUS=`$RADEONTOOL light|awk '/The radeon backlight looks / {print $5}'`;
if [ $STATUS == "on" ] ; then
$RADEONTOOL light off
elif [ $STATUS == "off" ] ; then
$RADEONTOOL light on
fi
anche se non è proprio come su windows dove basta muover il mouse o premere qualcosa sulla tastiera per ripristinar lo schermo e tornar alla richiesta della password per sbloccare lo screensaver... una protezione in più che manca qui -.-