diff options
Diffstat (limited to '.local/bin/barpos')
-rwxr-xr-x | .local/bin/barpos | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/barpos b/.local/bin/barpos index 16626a3..d84709d 100755 --- a/.local/bin/barpos +++ b/.local/bin/barpos @@ -1,6 +1,6 @@ #!/bin/sh -BAR_CFG=$XDG_CONFIG_HOME/polybar/config.ini +BAR_CFG="$XDG_CONFIG_HOME/polybar/config.ini" main () { if [ ! -n "$1" ]; then @@ -26,11 +26,11 @@ toggle () { } bottom () { - sed -ir "s|^bottom = .*$|bottom = true|" $BAR_CFG + sed -Ei "s|^bottom = .*$|bottom = true|" $BAR_CFG } top () { - sed -ir "s|^bottom = .*$|bottom = false|" $BAR_CFG + sed -Ei "s|^bottom = .*$|bottom = false|" $BAR_CFG } main "$@" |