mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 22:19:45 +00:00
12 lines
144 B
Bash
12 lines
144 B
Bash
#!/bin/bash
|
|
|
|
# Prints the backlight percentage
|
|
|
|
PREFIX='ﯧ'
|
|
|
|
get_backlight()
|
|
{
|
|
echo "$PREFIX $(light | sed 's/\..*//g')%"
|
|
}
|
|
|
|
get_backlight
|