我在 Debian 測試中使用很棒的 3.5.9。/bin/bash
是我的用戶的外殼。我的~/.profile
讀物
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
在我的文件中,~/.bashrc
我編輯了我的$PATH
文件以包含一些自訂目錄。
在 Awesome's 中rc.lua
,我設定了這樣的提示:
awful.key({ modkey }, "r",
function ()
awful.prompt.run({ prompt = "Run: " },
mypromptbox[mouse.screen].widget,
awful.util.spawn, awful.completion.bash)
end),
但是,很棒的提示中的自動完成功能並沒有考慮我的$PATH
.
我究竟做錯了什麼?