diff options
| author | Ben Beltran <ben@nsovocal.com> | 2019-03-14 19:27:09 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2019-03-14 19:27:09 +0100 |
| commit | 5d173e99d3e906b49ba3bde59388083b120d4e21 (patch) | |
| tree | 1b12841f217b315cd05fc262eafc69a7aeb25ad1 /status-left.sh | |
| parent | ac88944771c9006d4299ab8f8d54a4ff0555d099 (diff) | |
Remove unused tmux configs
Diffstat (limited to 'status-left.sh')
| -rwxr-xr-x | status-left.sh | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/status-left.sh b/status-left.sh deleted file mode 100755 index 21727cf..0000000 --- a/status-left.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/env bash -#Print the status-left for tmux. -# -# The powerline root directory. -cwd=$(dirname $0) - -# Source global configurations. -source "${cwd}/config.sh" - -# Source lib functions. -source "${cwd}/lib.sh" - -segments_path="${cwd}/${segments_dir}" - -# Mute this statusbar? -mute_status_check "left" - -# Segments -declare -A tmux_session_info -tmux_session_info+=(["script"]="${segments_path}/tmux_session_info.sh") -tmux_session_info+=(["foreground"]="colour7") -tmux_session_info+=(["background"]="colour12") -tmux_session_info+=(["separator"]="${separator_right_bold}") -#tmux_session_info+=(["separator_fg"]="default") -register_segment "tmux_session_info" - -declare -A hostname -hostname+=(["script"]="${segments_path}/hostname.sh") -hostname+=(["foreground"]="colour7") -hostname+=(["background"]="colour1") -hostname+=(["separator"]="${separator_right_bold}") -register_segment "hostname" - -declare -A lan_ip -lan_ip+=(["script"]="${segments_path}/lan_ip.sh") -lan_ip+=(["foreground"]="colour7") -lan_ip+=(["background"]="colour24") -lan_ip+=(["separator"]="${separator_right_bold}") -#register_segment "lan_ip" - -declare -A vcs_branch -vcs_branch+=(["script"]="${segments_path}/vcs_branch.sh") -vcs_branch+=(["foreground"]="colour12") -vcs_branch+=(["background"]="colour7") -vcs_branch+=(["separator"]="${separator_right_bold}") -register_segment "vcs_branch" - -# Print the status line in the order of registration above. -print_status_line_left - -exit 0 |