mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
Better fix that doesn't mess with spacing
This commit is contained in:
parent
aee5c3515f
commit
c9a316f5ea
1 changed files with 2 additions and 2 deletions
4
bar.sh
4
bar.sh
|
@ -32,8 +32,8 @@ get_bar()
|
|||
fi
|
||||
done
|
||||
# Uncomment to remove last separator
|
||||
bar="$(echo $bar | sed 's/.$//g')"
|
||||
echo "$LEFT_PADDING$bar$RIGHT_PADDING"
|
||||
# bar="$(echo "$bar" | sed 's/.$//g')"
|
||||
echo "$LEFT_PADDING${bar::-2}$RIGHT_PADDING"
|
||||
}
|
||||
|
||||
run_module()
|
||||
|
|
Loading…
Reference in a new issue