xmonad 帮助。我的 Mod 密钥是哪一个?

发布于 2024-11-25 11:45:58 字数 382 浏览 1 评论 0原文

我正在使用这个配置文件 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

枯叶蝶 2024-12-02 11:45:58

相关位是modMask = mod4Mask;在大多数设置中,mod 4 是“Windows”键。

The relevant bit is modMask = mod4Mask; on most setups, mod 4 is the "Windows" key.

桃扇骨 2024-12-02 11:45:58

问题很简单。您的新 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

空城之時有危險 2024-12-02 11:45:58

windows 键现在就是你的 mod。

相关行是:

 modMask               = mod4Mask 

The windows key is your mod now.

The relevent line is :

 modMask               = mod4Mask 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文