↧
Answer by Albert Gonzalez for How to start up xmonad with apps on other...
You can spawn the app via startupHook and then use a manageHook to handle window placement.manageHook such as:, className =? "deluge" --> doShift ( myWorkspaces !! 3 )The above will actually spawn...
View ArticleAnswer by Pierre for How to start up xmonad with apps on other workspaces
Install wmctrlsudo apt install wmctrlAnd create a script (in this example thunderbird on the second workspace (-t 1)):#!/bin/sh (thunderbird &) & sleep 5 && sh -c "wmctrl -i -r `wmctrl...
View ArticleHow to start up xmonad with apps on other workspaces
I'm trying to write an xmonad.hs which, at startup, launches some apps on some workspaces. Several of these apps (e.g., atop) will run within a terminal (urxvt being my preference).This has been asked...
View Article