projects
/
~bandali
/
configs
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bfe0aa2
)
[rc/sway-ws-util] wrap around on workspace 1 and 10
author
Amin Bandali
<amin@aminb.org>
Sat, 21 Jul 2018 23:54:32 +0000
(19:54 -0400)
committer
Amin Bandali
<amin@aminb.org>
Sat, 21 Jul 2018 23:54:32 +0000
(19:54 -0400)
rc.org
patch
|
blob
|
blame
|
history
diff --git
a/rc.org
b/rc.org
index
9c69f2b
..
1830d6c
100644
(file)
--- 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