diff --git a/.tmux.conf.local b/.tmux.conf.local index 2fb1130..a33bd33 100644 --- a/.tmux.conf.local +++ b/.tmux.conf.local @@ -223,7 +223,7 @@ tmux_conf_theme_right_separator_sub='\uE0B3' # PowerlineSymbols.otf font, see # - #{username} # - #{username_ssh} tmux_conf_theme_status_left=" ❐ #S " -tmux_conf_theme_status_right=" #{prefix}#{mouse}#{pairing}#{synchronized}#{?battery_status,#{battery_status},}#{?battery_bar, #{battery_bar},}#{?battery_percentage, #{battery_percentage}, }#{cpu_fg_color} #{cpu_percentage} #{ram_fg_color} #{ram_percentage} #{cpu_temp_fg_color}#{cpu_temp_icon}#{cpu_temp} , %R , %d %b |#{root}" +tmux_conf_theme_status_right=" #{prefix}#{mouse}#{pairing}#{synchronized}#{?battery_status,#{battery_status},}#{?battery_bar, #{battery_bar},}#{?battery_percentage, #{battery_percentage}, }#{weather} , #{cpu_fg_color} #{cpu_percentage} #{ram_fg_color} #{ram_percentage} #{cpu_temp_fg_color}#{cpu_temp_icon}#{cpu_temp} , %R , %d %b |#{root}" # status left style tmux_conf_theme_status_left_fg="$tmux_conf_theme_colour_6,$tmux_conf_theme_colour_7,$tmux_conf_theme_colour_8" @@ -356,7 +356,7 @@ tmux_conf_copy_to_os_clipboard=false # by default, launching tmux will update tpm and all plugins # - true (default) # - false -tmux_conf_update_plugins_on_launch=true +tmux_conf_update_plugins_on_launch=false # by default, reloading the configuration will update tpm and all plugins # - true (default) @@ -406,7 +406,7 @@ set -g @cpu_temp_high_icon "" # # /!\ do not "uncomment" the functions: the leading "# " characters are needed # # weather() { -# curl -m 1 "https://wttr.in?format=3" 2>/dev/null +# curl -m 1 "https://wttr.in?format=1" 2>/dev/null # sleep 900 # sleep for 15 minutes, throttle network requests whatever the value of status-interval # } # diff --git a/install.sh b/install.sh index eb414b3..69095d9 100755 --- a/install.sh +++ b/install.sh @@ -35,4 +35,10 @@ function install_home() { run ln -sf $(this_script_root_dir)/.tmux/.tmux.conf $HOME/.tmux.conf } + +pushd $(this_script_root_dir) +git pull +git submodule init +git submodule update +popd install_home