私は次の提案のようなスクリプトを書いてみました:
ディレクトリと新しいスクリプト ファイルを作成しました。
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