projects
/
~bandali
/
configs
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b9a848895845b767b232daec2aa1903f9b5b8bbd
[~bandali/configs]
/
.local
/
bin
/
volume-info
1
#!/bin/sh
2
cur_vol
=
$
(
pamixer
--get-volume
)
3
4
if
[
$
(
pamixer
--get-mute
) =
true
];
then
5
printf
'mt
\n
'
"
$cur_vol
"
6
else
7
printf
'%02d
\n
'
"
$cur_vol
"
8
fi