Skip to content

Instantly share code, notes, and snippets.

@TitouanT
Forked from fbrinker/i3-display-swap.sh
Last active February 6, 2024 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TitouanT/4dfb8c968f06965aaa875fcf6e837b3e to your computer and use it in GitHub Desktop.
Save TitouanT/4dfb8c968f06965aaa875fcf6e837b3e to your computer and use it in GitHub Desktop.
Swap i3 displays / workspaces between displays
#!/bin/sh
# requires jq
stick_to="name" && cmd="workspace" # stick to the workspace
# stick_to="output" && cmd="focus output" # stick to the screen
initial=$(
i3-msg -t get_workspaces |
jq -r ".[] | select(.focused == true) | .$stick_to"
)
py_script=$(cat <<EOF
import sys
from numpy import roll
s, w = [], []
for l in sys.stdin.readlines():
screen, workspace = l.strip().split(':', 1)
s.append(screen)
w.append(workspace)
for line in zip(s, roll(s,1), w, roll(w, -1)):
print(' '.join(line))
EOF
)
i3-msg -t get_outputs |
jq -r '.[] | select(.active == true) | "\(.name):\(.current_workspace)"' |
python3 -c "$py_script" |
while read -r screen_src screen_dst workspace_tgt workspace_final
do
i3-msg -- workspace --no-auto-back-and-forth "$workspace_tgt"
i3-msg move workspace to output "$screen_dst"
i3-msg focus output "$screen_src"
i3-msg -- workspace --no-auto-back-and-forth "$workspace_final"
echo "moved $workspace_tgt to $screen_dst"
echo "and restored focus to $workspace_final"
done
i3-msg $cmd $initial
@Zackhardtoname
Copy link

I normally use zsh but I tried it both for zsh and bash and got the same error...

@Zackhardtoname
Copy link

Zackhardtoname commented Nov 15, 2020

The output I got:

DP-2:1:1:
DP-4:3:3:

I used icons in my ws names, which is not displaying on GitHub, bu shows like this for me.

image

Maybe that's the issue? Also somehow my only two monitors are named DP-2 and DP-4...

@TitouanT
Copy link
Author

I meant what shell /bin/sh points to you can see which it is with realpath /bin/sh

@TitouanT
Copy link
Author

yeah thats the issue

@TitouanT
Copy link
Author

Can you reference them by there number, for example does this put focus on your chrome workspace ?
i3-msg -- workspace --no-auto-back-and-forth "1"

If yes then just change screen, workspace = l.strip().split(':') to screen, workspace = l.strip().split(':')[:2]

If it works then I will add it to the gist.

@Zackhardtoname
Copy link

Zackhardtoname commented Nov 15, 2020

Let me see. The original script this is forked from did not give me that error.

@TitouanT
Copy link
Author

TitouanT commented Nov 15, 2020

@Zackhardtoname it should work now ! thanks for your feedback, I keep my workspaces named with numbers so I never ran into this issue.
The problem here was that you have : in your workspace name and that's the symbol I use to split.

@Zackhardtoname
Copy link

Zackhardtoname commented Nov 15, 2020

That wouldn't and didn't work because somehow i3 treats ws "3" and "3:" differently.
This works: screen, workspace = l.strip().split(':', maxsplit=1)

Thank you so much! I should have dug this more myself

@Tonus1
Copy link

Tonus1 commented Mar 1, 2023

Hi
I grabbed your script thinking that it would manage my special naming convention

set $workspace1 "1 "
set $workspace2 "2 "
set $workspace3 "3 "
set $workspace4 "4 "
set $workspace5 "5 "
set $workspace6 "6 "
set $workspace7 "7 "
set $workspace8 "8 "
set $workspace9 "9 "
set $workspace10 "10 "

Unfortunately, it doesn't, because of the spaces. Had to change the names changing spaces with underscores.
Not as pretty but it works.

Do you think there's a way to handle spaces in workspaces names ?

Regards

@NotRexButCaesar
Copy link

I just wanted to say thank you: I can't imagine how long it would have taken me to figure this out.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment