/acpi/screenblank.sh

http://github.com/brinkman83/bashrc · Shell · 15 lines · 11 code · 3 blank · 1 comment · 4 complexity · ce58b608d876edc5dd461440d77d7b22 MD5 · raw file

  1. #!/bin/sh
  2. test -f /usr/share/acpi-support/key-constants || exit 0
  3. . /etc/default/acpi-support
  4. . /usr/share/acpi-support/power-funcs
  5. for x in /tmp/.X11-unix/*; do
  6. displaynum=`echo $x | sed s#/tmp/.X11-unix/X##`
  7. getXuser;
  8. if [ x"$XAUTHORITY" != x"" ]; then
  9. export DISPLAY=":$displaynum"
  10. . /usr/share/acpi-support/screenblank
  11. fi
  12. done