├── .gitignore ├── LICENSE ├── README.md ├── bin ├── _tmux_myip ├── _tmux_os_release ├── _tmux_prompt ├── _tmux_title ├── _tmux_uname ├── _tmux_uptime └── tmux-colors ├── functions └── tmux-motd └── tmux.plugin.zsh /.gitignore: -------------------------------------------------------------------------------- 1 | .directory 2 | *.zwc 3 | *.old 4 | *~ 5 | 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/tmux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/tmux/HEAD/README.md -------------------------------------------------------------------------------- /bin/_tmux_myip: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | curl -s icanhazip.com || echo No IP 4 | -------------------------------------------------------------------------------- /bin/_tmux_os_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/tmux/HEAD/bin/_tmux_os_release -------------------------------------------------------------------------------- /bin/_tmux_prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/tmux/HEAD/bin/_tmux_prompt -------------------------------------------------------------------------------- /bin/_tmux_title: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | if [[ $# -eq 0 ]] ; then 4 | exit 1 5 | fi 6 | 7 | echo -n $@ 8 | -------------------------------------------------------------------------------- /bin/_tmux_uname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/tmux/HEAD/bin/_tmux_uname -------------------------------------------------------------------------------- /bin/_tmux_uptime: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | uptime -s 4 | 5 | -------------------------------------------------------------------------------- /bin/tmux-colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/tmux/HEAD/bin/tmux-colors -------------------------------------------------------------------------------- /functions/tmux-motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/tmux/HEAD/functions/tmux-motd -------------------------------------------------------------------------------- /tmux.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/tmux/HEAD/tmux.plugin.zsh --------------------------------------------------------------------------------