summaryrefslogtreecommitdiff
blob: 64dcdfbb62e02412a6768e53df2a2ec579cc294a (plain)
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
27
28
29
diff -ur common.orig/usr/share/doc/fglrx/examples/etc/acpi/ati-powermode.sh common/usr/share/doc/fglrx/examples/etc/acpi/ati-powermode.sh
--- common.orig/usr/share/doc/fglrx/examples/etc/acpi/ati-powermode.sh	2006-07-28 04:22:36.000000000 +0100
+++ common/usr/share/doc/fglrx/examples/etc/acpi/ati-powermode.sh	2006-08-04 12:19:42.000000000 +0100
@@ -4,6 +4,8 @@
 # Control script for ACPI lid state and AC adapter state
 #
 
+aticonfig='/opt/bin/aticonfig'
+
 getXuser() {
         user=`finger| grep -m1 ":$displaynum " | awk '{print $1}'`
         if [ x"$user" = x"" ]; then
@@ -63,13 +65,13 @@
     if [ ${has_pplib} -eq 1 ]; then
         su $user -c '/usr/bin/aticonfig --pplib-cmd="notify psrc dc"'
     else
-        su $user -c "/usr/bin/aticonfig --set-powerstate=1 --effective=now"
+	    su $user -c "$aticonfig --set-powerstate=1"
     fi
 else
     echo "high power"
     if [ ${has_pplib} -eq 1 ]; then
         su $user -c '/usr/bin/aticonfig --pplib-cmd="notify psrc ac"'
     else
-        su $user -c "/usr/bin/aticonfig --set-powerstate=3 --effective=now"
+	    su $user -c "$aticonfig --set-powerstate=$($aticonfig --lsp | grep 'default state' | cut -c 3)"
     fi
 fi