mirror of
https://github.com/GRFreire/dotfiles.git
synced 2026-07-05 08:19:40 +00:00
7 lines
162 B
Bash
Executable File
7 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
|
|
max=$(cat /sys/class/backlight/intel_backlight/max_brightness)
|
|
curr=$(cat /sys/class/backlight/intel_backlight/brightness)
|
|
|
|
echo "$curr*100/$max" | bc
|