projects
/
~bandali
/
configs
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
Add dunst.service dbus file
[~bandali/configs]
/
.local
/
bin
/
volume-info
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
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