7 lines
198 B
Bash
Executable file
7 lines
198 B
Bash
Executable file
#!/bin/sh
|
|
# Reduce brightness by 5%
|
|
# Depends on 'community/brightnessctl'
|
|
|
|
brightness=$(brightnessctl s 5%- | grep -o "[0-9]*%")
|
|
|
|
notify-send -u low --replace-id=10 " Brightness" "$brightness"
|