在xmonad中更改dmenu的字体


6

我正在使用xmonad和dmenu,默认情况下modMask-p组合启动dmenu。但是,字体对我来说太小了,我无法弄清楚如何更改它。我可以从命令行运行dmenu_run -fn "-misc-fixed-*-*-*-*-15-*-*-*-*-*-*-*",dmenu会出现一个更大的字体,但当我进入我的xmonad.hs文件并执行

defaultConfig { ...stuff...} `additionalKeys` [((mod4Mask, xK_p), spawn "dmenu_run -fn \"-misc-fixed-*-*-*-*-15-*-*-*-*-*-*-*\"")]

然后xmonad --recompile似乎没有任何变化,也没有出现错误信息。

感谢您的建议。

Answers:


2

删除\"字体字符串周围的两个。

这对我有用:

((mod4Mask, xK_p), spawn "dmenu_run -fn -*-terminus-*-r-*-*-12-*-*-*-*-*-*-* -nb bisque3 -nf grey35 -sb bisque1 -sf grey10")

甚至更好地使用而不是dmenu xmonad.prompt.shell
mimi.vx 2017年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.