Different layout an a specified workspace
I'm using workspace_layout tabbed
and it's good in most cases. But on workspace dox
I would need splith
(I'm run a specified urxvt with vim and edit LaTeX documents and I need zathura on right to view my document).
I thought I can do with the following code:
mode "terminal" {
bindsym d exec urxvt-config dox; workspace dox;layout splith; mode default
... other specified terminals ...
}
bindsym $winkey+x mode terminal
I thought it runs urxvt with correct config (it's OK, urxvt-config is an own script, works well), change current workspace to dox (it's OK), set its layout to splith (it's NOT OK).
Is there any workaround or what do I wrong?