projects
/
~bandali
/
configs
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
remove some old cruft from rc.org
[~bandali/configs]
/
.local
/
bin
/
volume-info
Commit
Line
Data
a92a01fe
AB
1
#!/bin/sh
2
3
cur_vol=$(pamixer --get-volume)
4
5
if [ $(pamixer --get-mute) = true ]; then
6
printf 'mt \n' "$cur_vol"
7
else
8
printf '%02d \n' "$cur_vol"
9
fi