Re: [i3] i3-msg - move all/some workspaces to another output

2014-10-14 Thread Axel Wagner
I actually have the *exact* same problem and assigning workspaces to VGA1 is not a real solution for me, as I regularly use the VGA port for presentations and such and then I actually *don't* want any workspaces (apart from the one running the presentation of course) on the beamer. I currently use

Re: [i3] i3-msg - move all/some workspaces to another output

2014-10-14 Thread Michael Stapelberg
No, but there’s a ticket for that: http://bugs.i3wm.org/report/ticket/555 On Tue, Oct 14, 2014 at 9:11 PM, Fabian Raetz wrote: > On Tue, Oct 14, 2014 at 08:53:17PM +0200, Michael Stapelberg wrote: >> Have you tried assigning the workspaces to VGA1? See >> http://i3wm.org/docs/userguide.html#works

Re: [i3] i3-msg - move all/some workspaces to another output

2014-10-14 Thread Fabian Raetz
On Tue, Oct 14, 2014 at 08:53:17PM +0200, Michael Stapelberg wrote: > Have you tried assigning the workspaces to VGA1? See > http://i3wm.org/docs/userguide.html#workspace_screen. When the output > is unavailable, workspaces get moved to another output, which in your > case is LVDS1. No, but i am u

Re: [i3] i3-msg - move all/some workspaces to another output

2014-10-14 Thread Michael Stapelberg
Have you tried assigning the workspaces to VGA1? See http://i3wm.org/docs/userguide.html#workspace_screen. When the output is unavailable, workspaces get moved to another output, which in your case is LVDS1. On Tue, Oct 14, 2014 at 8:34 PM, Fabian Raetz wrote: > On Tue, Oct 14, 2014 at 10:55:07AM

Re: [i3] i3-msg - move all/some workspaces to another output

2014-10-14 Thread Fabian Raetz
On Tue, Oct 14, 2014 at 10:55:07AM -0500, Bigby James wrote: > On 10/14, Fabian Raetz wrote: > > Hi all, > > > > i am looking for a way to move all (or some) > > of my workspaces to another output. > > > > Something like in the following shell script would be nice: > > > > -

Re: [i3] i3-msg - move all/some workspaces to another output

2014-10-14 Thread Bigby James
On 10/14, Fabian Raetz wrote: > Hi all, > > i am looking for a way to move all (or some) > of my workspaces to another output. > > Something like in the following shell script would be nice: > > - > #!/bin/sh > > WS="2 3 4 5 6" > OUTPUT=VGA1 > > for W in $WS; do >

[i3] i3-msg - move all/some workspaces to another output

2014-10-14 Thread Fabian Raetz
Hi all, i am looking for a way to move all (or some) of my workspaces to another output. Something like in the following shell script would be nice: - #!/bin/sh WS="2 3 4 5 6" OUTPUT=VGA1 for W in $WS; do i3-msg move workspace $W to output $OUTPUT done