diff options
Diffstat (limited to '.local/bin/b-ws-util')
-rwxr-xr-x | .local/bin/b-ws-util | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/b-ws-util b/.local/bin/b-ws-util index df921f7..6ca5fe9 100755 --- a/.local/bin/b-ws-util +++ b/.local/bin/b-ws-util @@ -31,10 +31,10 @@ else fi if [ "$op" = "switch" ]; then - i3 workspace "$dest_ws" + "$1" workspace number "$dest_ws" elif [ "$op" = "move" ]; then - i3 move container to workspace "$dest_ws" + "$1" move container to workspace number "$dest_ws" if [ "$4" = "follow" ]; then - i3 workspace "$dest_ws" + "$1" workspace number "$dest_ws" fi fi |