5 lines
130 B
Bash
5 lines
130 B
Bash
|
#!/bin/bash
|
||
|
brightnessctl -q set +5%
|
||
|
msg="Helligkeit: $(echo $(($(brightnessctl get)/12)))%"
|
||
|
notify-send --expire-time=500 "$msg"
|