6 lines
223 B
Bash
6 lines
223 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Blank and set brightness (fixes blank screen after boot splash)
|
||
|
echo 0 > /sys/class/graphics/fb0/blank
|
||
|
echo 255 > /sys/devices/soc.0/1a00000.qcom,mdss_mdp/qcom,mdss_fb_primary.126/leds/lcd-backlight/brightness
|