作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个 xmonad.hs,它在启动时会在某些工作区上启动一些应用程序。其中几个应用程序(例如, atop
)将在终端内运行( urxvt
是我的偏好)。
这已经被问过几次了,例如,here , here ,并在 XMonad FAQ 上斜着触及.
但是,这些依赖于:
spawnOn
来自 XMonad.Actions.SpawnOn
,哪个平面不起作用(用 urxvt
进行测试,还有 xclock
作为一个简单的例子);它被发送到当前工作区。 spawn prog >> windows $ greedyView <workspace>
,这有点工作,但有主要的时间问题 - 例如,如果你连续运行两个,使用不同的工作区,两个编最终都在后一个工作区。 FWIW,我尝试使用 threaddelay 来辅助;它没有任何明显的区别,即使在 spawn 之间有 10 秒的延迟(我记得 threadDelay 以微秒为单位,因此使用了 10000000)。 最佳答案
安装 wmctrl
sudo apt install wmctrl
-t 1
)上的雷鸟):
#!/bin/sh
(thunderbird &) & sleep 5 &&
sh -c "wmctrl -i -r `wmctrl -l | grep Thunderbird` -t 1"
wmctrl -l
-t 2
) 上使用 Firefox 的其他示例:
#!/bin/sh
(firefox &) & sleep 5 &&
sh -c "wmctrl -i -r `wmctrl -l | grep Firefox` -t 2"
sh -c "thunderbird & sleep 5 && wmctrl -i -r `wmctrl -l | grep Thunderbird` -t 1"
关于haskell - 如何使用其他工作区上的应用程序启动 xmonad,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56197066/
我是一名优秀的程序员,十分优秀!