/etc/rc.local
ファイルに2つの省電力コマンドを追加します。
Bluetoothを無効にするには:
rfkill block bluetooth
そして、これは画面の明るさを減らすために:
echo 3024 > /sys/class/backlight/intel_backlight/brightness
/etc/rc.local
に個別に追加されますが、これらは機能しますが、次のように両方を一緒に使用することはできません。
#/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
echo 3024 > /sys/class/backlight/intel_backlight/brightness
rfkill block bluetooth
exit 0
2つのコマンドを追加して、起動時に正しく実行するにはどうすればよいですか?
更新
それはタイミングの問題であることが判明しました。最初のコマンドの実行を遅らせることで修正しました:
(sleep 5; echo 3021 > /sys/class/backlight/intel_backlight/brightness)&