Add mistakenly omitted semicolon
This commit is contained in:
parent
c0ef08732f
commit
a7d5799b6a
1 changed files with 1 additions and 1 deletions
2
volbash
2
volbash
|
@ -97,7 +97,7 @@ adjust() {
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Ascertain the volume level by parsing wpctl's output
|
# Ascertain the volume level by parsing wpctl's output
|
||||||
vol=$(v="$(wpctl get-volume "$SOURCE")" echo "${v#* }")
|
vol=$(v="$(wpctl get-volume "$SOURCE")"; echo "${v#* }")
|
||||||
vol=$([[ ${vol%.*} -gt 0 ]] && echo "${vol%.*}" || echo)${vol#*.}
|
vol=$([[ ${vol%.*} -gt 0 ]] && echo "${vol%.*}" || echo)${vol#*.}
|
||||||
|
|
||||||
# Designate an arithmetic operator for the operation
|
# Designate an arithmetic operator for the operation
|
||||||
|
|
Loading…
Add table
Reference in a new issue