summaryrefslogtreecommitdiff
path: root/.local/bin/barpos
diff options
context:
space:
mode:
authoradam <56338480+adastx@users.noreply.github.com>2022-11-04 21:43:06 +0100
committeradam <56338480+adastx@users.noreply.github.com>2022-11-04 21:43:06 +0100
commit767c0821ee0a1ad893efe9b5bc8e84f5629f8416 (patch)
treeb3b8b619dd99f020f41f54fa1186421901d78fd0 /.local/bin/barpos
parentbb2359c30f8ade19fc7e60ab825d2744d0c04fcf (diff)
scripts: removed bashisms
Diffstat (limited to '.local/bin/barpos')
-rwxr-xr-x.local/bin/barpos6
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 "$@"