6 lines
169 B
Bash
Executable File
6 lines
169 B
Bash
Executable File
result="$(brightnessctl set $1)"
|
|
current_perc="$(echo "$result" | grep -oP "\d{1,3}(?=%)")"
|
|
echo "$result"
|
|
echo "\"$current_perc\""
|
|
echo "$current_perc" >> /tmp/wobpipe
|