Insert a new named workspace between two other named workspaces.
Makes use of the i3 IPC protocol.
``` i3-insert-workspace [OPTIONS]
Options:
-p, --pivot
If no pivot given, using focused workspaces
-b, --before Insert before the pivot instead of after it
-n, --name
-m, --mode
[default: i3]
[possible values: i3, sway]
-c, --container-id
Either provide container id, or `focused` for focused one
-h, --help Print help (see a summary with '-h')
-V, --version Print version ```
```
i3-insert-workspace --pivot "After me" --container-id focused --name "New workspace" ```
set $insert_workspace ~/.config/i3/i3-insert-workspace
bindsym $mod+Control+w exec --no-startup-id $insert_workspace --before
bindsym $mod+Control+v exec --no-startup-id $insert_workspace
bindsym $mod+Control+Shift+W exec --no-startup-id $insert_workspace --before --container-id focused
bindsym $mod+Control+Shift+V exec --no-startup-id $insert_workspace --container-id focused