xmonad 帮助。我的 Mod 密钥是哪一个?
我正在使用这个配置文件 https://github.com/artificialbeing/ xmonad-conf/blob/master/xmonad.hs
我已经重新编译了 haskell xmonad --recompile
然后我做了 Mq (其中 M 是 ALT)来重新启动 xmonad。
没有错误,我很确定配置已设置。然而,ALT 似乎不再是 mod 键了。当我按 ALT+SHIFT+RETURN 时,我没有看到新的终端屏幕。
有人能帮我找出哪个键是mod吗?
I'm using this config file https://github.com/artificialbeing/xmonad-conf/blob/master/xmonad.hs
I've recompiled haskell by doing
xmonad --recompile
then I did M-q (where M is ALT) to restart xmonad.
There are no errors and I'm pretty sure the config is set up. However, ALT doesn't seem to be the mod key anymore. When I press ALT+SHIFT+RETURN, I don't get a new terminal screen.
Can someone help me figure out which key is mod?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
相关位是
modMask = mod4Mask
;在大多数设置中,mod 4 是“Windows”键。The relevant bit is
modMask = mod4Mask
; on most setups, mod 4 is the "Windows" key.问题很简单。您的新 xmonad 配置没有为 win+shift+Return 键序列指定生成终端操作。将该行添加到 kbMap。有关语法,请参阅此处找到的配置之一。http://www.haskell.org/haskellwiki/Xmonad/Config_archive
The problem is simple.Your new xmonad config does not specify a spawn Terminal action for the win+shift+Return key sequence. Add that line to kbMap. For syntax refer one of the configurations found here.http://www.haskell.org/haskellwiki/Xmonad/Config_archive
windows 键现在就是你的 mod。
相关行是:
The windows key is your mod now.
The relevent line is :