Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rodion-solovev-7/ef7e33323f25103a1c66d9d3d25733d1 to your computer and use it in GitHub Desktop.
Save rodion-solovev-7/ef7e33323f25103a1c66d9d3d25733d1 to your computer and use it in GitHub Desktop.
Sends the window to the right workspace + switches to this workspace. Useful as a shortcut script if your Linux does not support this shortcut
win_id="$(xdotool getactivewindow)";
desk_id="$(xdotool get_desktop)";
desk_id=$((desk_id + 1));
xdotool set_desktop_for_window "$win_id" "$desk_id";
xdotool set_desktop "$desk_id";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment