mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2025-03-13 00:56:13 +00:00
13 lines
144 B
Text
13 lines
144 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
# Prints the backlight percentage
|
||
|
|
||
|
PREFIX='ﯧ'
|
||
|
|
||
|
get_backlight()
|
||
|
{
|
||
|
echo "$PREFIX $(light | sed 's/\..*//g')%"
|
||
|
}
|
||
|
|
||
|
get_backlight
|