6 lines
209 B
Bash
Executable File
6 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
# Reducir el brillo al 50% (asegúrate de tener instalada xbacklight)
|
|
xbacklight -set 50
|
|
zenity --info --text="Modo de Ahorro Activado:\nBrillo reducido al 50%." --title="Modo de Ahorro Activado"
|
|
|