20 lines
520 B
Fish
Executable file
20 lines
520 B
Fish
Executable file
#!/usr/bin/fish
|
|
xbacklight $argv[1..-1]
|
|
|
|
set brightness (xbacklight -get)
|
|
set bar (seq -s "─" 0 (math $brightness / 3) | tr -d '[:digit:]')
|
|
|
|
set percentage (printf '%44s%d%%' '' "$brightness")
|
|
set body "$percentage\n $bar"
|
|
set title ' Brightness'
|
|
|
|
set file /tmp/notify-brightness.id
|
|
set age (find "$file" -cmin -0.025)
|
|
if [ -n "$age" ]
|
|
dunstify -r (cat "$file") -t 1500 "$title" "$body"
|
|
touch "$file"
|
|
else
|
|
set id (dunstify -p -t 1500 "$title" "$body")
|
|
echo $id > "$file"
|
|
chmod 600 "$file"
|
|
end
|