捕捉盖子关闭和打开事件

捕捉盖子关闭和打开事件

我尝试编写一个类似以下建议的脚本:

如何配置屏幕以在合上盖子时锁定?

我创建了一个目录和一个新的脚本文件:

mkdir /etc/acpi/local
gksudo gedit /etc/acpi/local/lid.sh.post

该文件/etc/acpi/local/lid.sh.post包含以下代码:

#!/bin/sh

#########################################################################
## Script written by Ruben Barkow                                      ##
## https://gist.githubusercontent.com/rubo77/1a3320fda5a47fdebde7/raw/87cde3f0554467a132aba3cda7ad3c5e7187571f/lid.sh.post
## Description: This script reacts if laptop lid is opened or          ##
## closed in Ubuntu 11.10 (Oneiric Ocelot).                            ##
##                                                                     ##
## This script can be freely redistributed, modified and used.         ##
## Any redistribution must include the information of authors.         ##
##                                                                     ##
## THIS SCRIPT HAS NO WARRANTY!                                        ##
#########################################################################

grep -q close /proc/acpi/button/lid/*/state
if [ $? = 0 ]; then
    echo close>>/tmp/screen.lid
fi
grep -q open /proc/acpi/button/lid/*/state
if [ $? = 0 ]; then
    echo open>>/tmp/screen.lid
fi

我尝试在 Ubuntu 14.04 中运行它,但是为什么没有效果。

Ubuntu 14.04 中是否有新的方法来捕捉盖子关闭和打开事件?

答案1

我在这里得到一个提示:https://askubuntu.com/a/518825/34298

  • 当盖子打开或关闭时您想要调用的脚本必须存储
    在中/etc/acpi/lid.sh

  • 然后必须创建正确的文件/etc/acpi/events/lm_lid,其内容如下:

     event=button/lid.*
     action=/etc/acpi/lid.sh
    
  • 重启系统以使此操作生效。或者使用以下命令重启 ACPI 即可

     sudo systemctl restart acpid.service 
    

相关内容