2009-12-11 04:00:56 +05:30
|
|
|
#!/bin/sh
|
|
|
|
# Detect AC power or not in a portable way
|
|
|
|
# Exit 0 if on AC power, 1 if not and 255 if we don't know how to work it out
|
2015-12-05 04:22:19 +05:30
|
|
|
|
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
|
|
|
|
2011-11-17 21:18:38 +05:30
|
|
|
if [ -f /proc/acpi/ac_adapter/*/state ]; then
|
|
|
|
cat /proc/acpi/ac_adapter/*/state | while read line; do
|
2009-12-11 04:00:56 +05:30
|
|
|
case "$line" in
|
2010-07-13 08:49:56 +05:30
|
|
|
"state:"*"off-line") exit 128;;
|
2009-12-11 04:00:56 +05:30
|
|
|
esac
|
|
|
|
done
|
2011-11-17 21:18:38 +05:30
|
|
|
elif [ -f /sys/class/power_supply/*/online ]; then
|
|
|
|
cat /sys/class/power_supply/*/online | while read line; do
|
2010-07-13 08:49:56 +05:30
|
|
|
[ "${line}" = 0 ] && exit 128
|
2010-03-27 14:23:04 +05:30
|
|
|
done
|
2009-12-11 04:00:56 +05:30
|
|
|
elif [ -f /proc/pmu/info ]; then
|
|
|
|
cat /proc/pmu/info | while read line; do
|
|
|
|
case "$line" in
|
2010-07-13 08:49:56 +05:30
|
|
|
"AC Power"*": 0") exit 128;;
|
2009-12-11 04:00:56 +05:30
|
|
|
esac
|
|
|
|
done
|
2013-12-02 06:55:01 +05:30
|
|
|
elif command -v envstat >/dev/null 2>&1; then
|
2009-12-11 04:00:56 +05:30
|
|
|
# NetBSD has envstat
|
|
|
|
envstat -d acpiacad0 2>/dev/null | while read line; do
|
|
|
|
case "$line" in
|
2010-07-13 08:49:56 +05:30
|
|
|
"connected:"*"OFF") exit 128;;
|
2009-12-11 04:00:56 +05:30
|
|
|
esac
|
|
|
|
done
|
|
|
|
elif sysctl -q hw.acpi.acline >/dev/null 2>/dev/null; then
|
|
|
|
case $(sysctl -n hw.acpi.acline) in
|
2010-07-13 08:49:56 +05:30
|
|
|
0) exit 1;;
|
|
|
|
*) exit 0;;
|
2009-12-11 04:00:56 +05:30
|
|
|
esac
|
|
|
|
else
|
|
|
|
exit 255
|
|
|
|
fi
|
|
|
|
[ $? != 128 ]
|