New functions/bin structure

This commit is contained in:
2021-08-02 05:18:07 -06:00
parent 2500a49c1e
commit e726ba61ae
54 changed files with 313 additions and 665 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env sh
function pashowvolume {
if paismuted; then
volnoti-show -m
else
actual=$(pavolume)
max=100
show=$(( actual < max ? actual : max ))
volnoti-show "$show"
fi
}
pashowvolume