blob: ab365a971171694b22191c5341726a01e6ae4b5d (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/usr/bin/env fish
brightnessctl set $argv[1]
set curr (math -s0 -mround (brightnessctl get) / (brightnessctl max) "*" 100)
notify-send -t 1000 -a 'brightness' -h int:value:$curr " $curr"
|