我需要在笔记本电脑启动时运行一个 bash 脚本来检查交流适配器是否已插入。这可能吗?
答案1
您可以使用acpi
使用-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