From 5d173e99d3e906b49ba3bde59388083b120d4e21 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Thu, 14 Mar 2019 19:27:09 +0100 Subject: Remove unused tmux configs --- status-left.sh | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100755 status-left.sh (limited to 'status-left.sh') 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 -- cgit