浏览代码

Merge branch 'master' of github.com:10sr/dotfiles

pull/1/head
10sr 12 年前
父节点
当前提交
2a2f3eb324
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      bashrc

+ 2
- 1
bashrc 查看文件

@@ -481,7 +481,8 @@ __my_ps1_bttry(){
local bst="/tmp/${USER}-tmp/batterystatus"
if test -z "$DISPLAY" && ! iswindows
then
test -f $bst && echo "[Battery:$(cat $bst)]"
test -f $bst && local bstr="$(cat $bst)"
test -n "$bstr" && echo "[Battery:$bstr]"
__my_battery_status %s >$bst &
fi
return $last


正在加载...
取消
保存