xmonad安装澄清

时间:2010-12-10 19:56:33

标签: xmonad

我正在尝试在我的机器上安装xmonad,而我正在说明这一点 (http://www.haskell.org/haskellwiki/Xmonad/Using_xmonad_on_Apple_OSX#Installing_xmonad)

2.2 Configuring Your .profile

Insert the following into your ~/.profile

export PATH=$PATH:~/.cabal/bin:/usr/local/bin
export USERWM=`which xmonad`
Much of this isn't needed until later, but it's good to get it out the way now.

2.2.1 Installing Cabal

我理解export PATH=$PATH:~/.cabal/bin:/usr/local/bin发生了什么,但有人可以解释一下:USERWM全局变量是什么以及究竟要分配给它的是什么? (我假设'哪个xmonad'不是字面意思)。它是xmonad的版本号吗?还有别的吗?

2 个答案:

答案 0 :(得分:1)

稍后在~/.xinitrc执行:

source ~/.profile
exec $USERWM

干杯

答案 1 :(得分:0)

此外,该行

export USERWM=`which xmonad`

是正确的。 shell会将反引号中的内容(大多数键盘顶部的“1”旁边)视为要执行的命令。 which命令将通过搜索PATH变量来提供xmonad的路径。

请注意,这意味着

export USERWM='which xmonad'

将无效,因为shell不会使用常规刻度标记运行命令。