sudo nano /etc/rc.local
Tekan Enter dan masukkan password Anda.
Sekarang kita tambahkan script ini tepat di atas exit 0
echo 0 > /sys/class/backlight/acpi_video0/brightness
Contoh Saya atur ke 0 (echo 0) ini Brightness paling redup. Agar nyaman di Mata tentunya.
Setelah itu masih di terminal, tekan
ctrl + x
lalu tekan
y
Ada pilihan untuk menulis file name langsung saja Tekan Enter
dan Restart ubuntu anda.
Kalau bingung ini preview script saya secara lengkap
#!/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 0 > /sys/class/backlight/acpi_video0/brightness
exit 0
0 comments:
Post a Comment