From: Amin Bandali Date: Sat, 21 Jul 2018 23:54:32 +0000 (-0400) Subject: [rc/sway-ws-util] wrap around on workspace 1 and 10 X-Git-Url: https://git.shemshak.org/~bandali/configs/commitdiff_plain/e549b7c83a2e1b8d09141f1049d70ed7b5911bdc [rc/sway-ws-util] wrap around on workspace 1 and 10 --- diff --git a/rc.org b/rc.org index 9c69f2b..1830d6c 100644 --- a/rc.org +++ b/rc.org @@ -4848,8 +4848,8 @@ sway #+begin_src bash curr_ws=$(swaymsg -t get_workspaces | jq -r '.[] | select(.focused==true).name') -prev_ws=$((curr_ws-1)) -next_ws=$((curr_ws+1)) +[[ $curr_ws -eq 1 ]] && prev_ws=10 || prev_ws=$((curr_ws-1)) +[[ $curr_ws -eq 10 ]] && next_ws=1 || next_ws=$((curr_ws+1)) dest_ws=-1 op=-1