Reorganize directory
This commit is contained in:
parent
12dce591bb
commit
10e3e1f745
26 changed files with 371 additions and 477 deletions
11
utility/bright_up.sh
Executable file
11
utility/bright_up.sh
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
#Bright_up.sh hopefully this works
|
||||
|
||||
current_brightness=$(cat /sys/class/backlight/intel_backlight/brightness)
|
||||
max_brightness=$(cat /sys/class/backlight/intel_backlight/max_brightness)
|
||||
|
||||
step=$(($max_brightness * 5/100))
|
||||
|
||||
current_brightness=$(echo "$step + $current_brightness" | bc)
|
||||
echo $current_brightness > /sys/class/backlight/intel_backlight/brightness
|
||||
Loading…
Add table
Add a link
Reference in a new issue