From asr at ufl.edu Thu Oct 29 18:42:43 2015 From: asr at ufl.edu (Allen S. Rout) Date: Thu, 29 Oct 2015 14:42:43 -0400 Subject: [xmonad] switch workspace on all monitors at once In-Reply-To: <55D40601.2010003@gmail.com> References: <55D40601.2010003@gmail.com> Message-ID: On 08/19/2015 12:28 AM, Kristopher Keller wrote: > Hi, I'm using three monitors and each monitor has 10 workspaces. > > This is the code I'm using to switch workspaces: > > [code] > myWorkspaces = withScreens 3 ["1","2","3","4","5","6","7","8","9"] > > ... > > [((m .|. modm, k), windows $ onCurrentScreen f i) > | (i, k) <- zip (workspaces' conf) [xK_1 .. xK_9] > , (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]] > [/code] > > I wanted to modify it to add a keybind to switch the workspace on all > three monitors at once. I'm moving workspaces around to different screens all the time, so the details will be different. But what I'd suggest is that you compose; just have your key press do "set screen 1 to workspace 1. Set screen 2 to workspace 1. "... etc. Example from my stuff below. , ((modm .|. shiftMask, xK_s ), do { windows (viewOnScreen 0 "tsmmon" ) >> windows (viewOnScreen 2 "tsmsess" ) } ) , ((modm .|. shiftMask, xK_f ), do { windows (viewOnScreen 0 "dd1" ) >> windows (viewOnScreen 2 "dd2" ) } ) , ((modm .|. shiftMask, xK_n ), windows (viewOnScreen 0 "mail" )) , ((modm .|. shiftMask, xK_a ), do { windows (viewOnScreen 0 "tsmmon" ) >> windows (viewOnScreen 2 "tsmsess" ) >> windows (viewOnScreen 1 "mail" ) >> windows (viewOnScreen 3 "web" ) } ) From tuncer.ayaz at gmail.com Thu Oct 29 22:12:48 2015 From: tuncer.ayaz at gmail.com (Tuncer Ayaz) Date: Thu, 29 Oct 2015 23:12:48 +0100 Subject: [xmonad] New release to go with 7.10.2 In-Reply-To: References: Message-ID: On Wed, Jun 24, 2015 at 2:50 PM, Brandon Allbery wrote: > On Wed, Jun 24, 2015 at 5:20 AM, Tuncer Ayaz wrote: >> >> Are there any blockers that would prevent cutting a release of current >> Darcs HEAD to go with the soon to be released GHC 7.10.2? > > > +1 Bump? From tuncer.ayaz at gmail.com Fri Oct 30 19:20:19 2015 From: tuncer.ayaz at gmail.com (Tuncer Ayaz) Date: Fri, 30 Oct 2015 20:20:19 +0100 Subject: [xmonad] xmonad.org sources? Message-ID: Where can I find the xmonad.org website sources? Was it forgotten in the git transition? From vogt.adam at gmail.com Fri Oct 30 19:30:09 2015 From: vogt.adam at gmail.com (adam vogt) Date: Fri, 30 Oct 2015 15:30:09 -0400 Subject: [xmonad] xmonad.org sources? In-Reply-To: References: Message-ID: Hi Tuncer, The website has been in git for a while. It's not (yet) part of the github organization. https://github.com/davidlazar/xmonad.org is the repo. Regards, Adam On Oct 30, 2015 3:21 PM, "Tuncer Ayaz" wrote: > Where can I find the xmonad.org website sources? Was it forgotten > in the git transition? > _______________________________________________ > xmonad mailing list > xmonad at haskell.org > http://mail.haskell.org/cgi-bin/mailman/listinfo/xmonad > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tuncer.ayaz at gmail.com Fri Oct 30 19:48:38 2015 From: tuncer.ayaz at gmail.com (Tuncer Ayaz) Date: Fri, 30 Oct 2015 20:48:38 +0100 Subject: [xmonad] xmonad.org sources? In-Reply-To: References: Message-ID: On Fri, Oct 30, 2015 at 8:30 PM, adam vogt wrote: > Hi Tuncer, > > The website has been in git for a while. It's not (yet) part of the github > organization. https://github.com/davidlazar/xmonad.org is the repo. Thanks, I hope it was correct to submit a pull request. I'm unsure because apparently it's the first one: https://github.com/davidlazar/xmonad.org/pull/1 We should move it to the org and also document how to contribute to the website.