在tmux中使用tmux-powerline tmux中使用tmux-powerline,并使用雅虎天气显示天气
1. 安装tmux
sudo pacman -S tmux
2. 从github上安装tmux-powerline
cd ~/some/path/ #进入到你要克隆的目录
git clone https://github.com/erikw/tmux-powerline.git
3. 配置tmux-powerline
- 配置基本的信息,将下面的加入到你的.tmux.conf中
set-option -g status on
set-option -g status-interval 2
set-option -g status-justify "centre"
set-option -g status-left-length 60
set-option -g status-right-length 90
set-option -g status-left "#(~/path/to/tmux-powerline/powerline.sh left)"
set-option -g status-right "#(~/path/to/tmux-powerline/powerline.sh right)"
set-window-option -g window-status-current-format "#[fg=colour235, bg=colour27]⮀#[fg=colour255, bg=colour27] #I ⮁ #W #[fg=colour27, bg=colour235]⮀"
-
配置雅虎天气
- 查看你所在城市的代码 查看城市代码
-
修改 ~/some/path/tmux-powerline/segments/weather.sh文件,加入所在城市代码
TMUX_POWERLINE_SEG_WEATHER_LOCATION="20070171"
4. 完成安装 效果如下
来源:oschina
链接:https://my.oschina.net/u/3978729/blog/2981045