Browse Source

changed sh to bash, otherwise 'run' function threw errors

master
Marc 4 years ago
parent
commit
2dcd2e7441
1 changed files with 2 additions and 2 deletions
  1. 4
      .config/bspwm/bspwmrc

4
.config/bspwm/bspwmrc

@ -1,4 +1,4 @@
#! /bin/sh
#! /bin/bash
bspc monitor -d I II III IV V VI VII VIII IX X
@ -30,7 +30,7 @@ bspc rule -a Zathura state=tiled
# function to check if a program already runs
# if not, start it
function run {
function run () {
if ! pgrep $1>/dev/null ; then
$@&
fi

Loading…
Cancel
Save