Answers:
您可以使用acpi
with -a
参数。要查看其工作原理,请在您的终端中运行:
acpi -a
默认情况下,acpi
未在Ubuntu中安装软件包,但使用以下命令从终端安装软件包非常容易且快速:
sudo apt-get install acpi
然后,您可以在脚本中使用例如:
ac_adapter=$(acpi -a | cut -d' ' -f3 | cut -d- -f1)
if [ "$ac_adapter" = "on" ]; then
notify-send "AC Adapter" "The AC Adapter is on."
else
notify-send "AC Adapter" "The AC Adapter is off."
fi
要使脚本在启动时运行,只需在crontab列表中添加一个新条目(使用crontab -e
命令),如下所示:
@reboot DISPLAY=:0.0 /path/to/your/script
acpi
解决此问题。谢谢!