New folder structure

This commit is contained in:
2023-04-03 17:47:42 +02:00
commit a2bdf977d9
42 changed files with 2055 additions and 0 deletions

12
System/ajustaBrillo.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
x=$(cat /sys/class/backlight/amdgpu_bl0/brightness)
if test $1 -eq 1; then
x=$(($x + $2))
echo $x > /sys/class/backlight/amdgpu_bl0/brightness
elif test $1 -eq 0; then
x=$(($x - $2))
echo $x > /sys/class/backlight/amdgpu_bl0/brightness
elif test $1 -eq 2; then
echo 20 > /sys/class/backlight/amdgpu_bl0/brightness
fi