2020-10-19 21:05:11 +02:00
|
|
|
#!/usr/bin/perl
|
2020-10-21 12:58:36 +02:00
|
|
|
################################################################################
|
|
|
|
# GADGETOPROMPT
|
|
|
|
# A really useless bash prompt generator the most likely only works on Linux and
|
|
|
|
# requires Perl.
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Have a look at README.md for some documentation
|
|
|
|
# Licensed under the WTFPL version 2, which should be in the LICENSE file.
|
2020-10-19 21:05:11 +02:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use utf8;
|
|
|
|
use open ':std', ':encoding(UTF-8)';
|
|
|
|
use POSIX qw(strftime);
|
|
|
|
|
2020-10-20 16:12:26 +02:00
|
|
|
|
2020-10-21 09:45:17 +02:00
|
|
|
# DEFAULT CONFIGURATION ====================================================={{{
|
|
|
|
|
2020-10-19 21:05:11 +02:00
|
|
|
our %CONFIG = (
|
2020-10-21 10:00:13 +02:00
|
|
|
# CONFIGURATION
|
|
|
|
# - Issue warnings about configuration files
|
|
|
|
cfg_warn_files => 1 ,
|
|
|
|
# - Allow overrides from environment
|
|
|
|
cfg_from_env => 0 ,
|
2020-10-21 12:39:23 +02:00
|
|
|
# - System theme dirs
|
2020-10-21 12:58:36 +02:00
|
|
|
cfg_sys_themes => [ '/usr/share/gprompt/themes' ] ,
|
2020-10-21 12:39:23 +02:00
|
|
|
# - User theme dirs
|
2020-10-21 12:58:36 +02:00
|
|
|
cfg_user_themes => [ '.local/share/gprompt/themes' , '.gprompt-themes' ] ,
|
2020-10-20 16:32:56 +02:00
|
|
|
|
2020-10-19 21:05:11 +02:00
|
|
|
# LAYOUT
|
2020-10-19 23:42:19 +02:00
|
|
|
# - Theme and local overrides
|
2020-10-21 12:39:23 +02:00
|
|
|
layout_theme => '' ,
|
2020-10-19 23:42:19 +02:00
|
|
|
layout_theme_overrides => {} ,
|
2020-10-19 21:41:05 +02:00
|
|
|
# - Section generators for the left side of the top bar
|
2020-10-21 12:39:23 +02:00
|
|
|
layout_left => [ ] ,
|
2020-10-19 21:41:05 +02:00
|
|
|
# - Section generator for the central part of the top bar (undef if unused)
|
2020-10-21 12:39:23 +02:00
|
|
|
layout_middle => '' ,
|
2020-10-19 21:41:05 +02:00
|
|
|
# - Section generators for the right side of the top bar
|
2020-10-21 12:39:23 +02:00
|
|
|
layout_right => [ ] ,
|
2020-10-19 21:41:05 +02:00
|
|
|
# - Section generators for the input bar
|
2020-10-21 12:39:23 +02:00
|
|
|
layout_input => [ qw( userhost cwd ) ] ,
|
2020-10-20 12:12:23 +02:00
|
|
|
# - Always generate input line?
|
2020-10-19 21:05:11 +02:00
|
|
|
layout_input_always => 0 ,
|
|
|
|
|
2020-10-20 17:35:59 +02:00
|
|
|
# TERMINAL TITLE
|
|
|
|
# - Set title from the prompt? 0=no, 1=normal, 2=minimized, 3=both
|
|
|
|
term_set_title => 1 ,
|
|
|
|
# - Generators to use
|
2020-10-21 12:39:23 +02:00
|
|
|
term_generators => [ qw( userhost cwd ) ] ,
|
2020-10-20 17:35:59 +02:00
|
|
|
# - Separator
|
2020-10-21 12:39:23 +02:00
|
|
|
term_separator => ':' ,
|
2020-10-20 17:35:59 +02:00
|
|
|
|
2020-10-19 21:05:11 +02:00
|
|
|
# CURRENT WORKING DIRECTORY
|
|
|
|
# - Max width as a percentage of the terminal's width
|
2020-10-20 16:12:26 +02:00
|
|
|
cwd_max_width => 50 ,
|
2020-10-19 21:05:11 +02:00
|
|
|
|
|
|
|
# USER@HOST
|
|
|
|
# - Display username? 0=no, 1=yes
|
|
|
|
uh_username => 1 ,
|
|
|
|
# - Display hostname? 0=no, 1=always, 2=remote only
|
2020-10-21 12:39:23 +02:00
|
|
|
uh_hostname => 1 ,
|
2020-10-20 12:12:23 +02:00
|
|
|
# - Display symbol for remote hosts?
|
2020-10-21 12:39:23 +02:00
|
|
|
uh_remote => 0 ,
|
2020-10-19 21:05:11 +02:00
|
|
|
|
|
|
|
# DATE/TIME
|
|
|
|
# - Display date?
|
|
|
|
dt_show_date => 0 ,
|
|
|
|
# - Display time?
|
|
|
|
dt_show_time => 1 ,
|
|
|
|
# - Date format
|
|
|
|
dt_date_fmt => '%Y-%m-%d' ,
|
|
|
|
# - Time format
|
|
|
|
dt_time_fmt => '%H:%M' ,
|
|
|
|
|
|
|
|
# PREVIOUS COMMAND STATE
|
|
|
|
# - Display OK/failed symbol?
|
|
|
|
pcmd_show_symbol => 1 ,
|
|
|
|
# - Display status code? 0=no, 1=always, 2=on failure
|
2020-10-20 14:40:20 +02:00
|
|
|
pcmd_show_code => 2 ,
|
2020-10-19 21:05:11 +02:00
|
|
|
# - Pad status code display? 0 = no, -1 = left aligned, 1 = right aligned
|
|
|
|
pcmd_pad_code => -1 ,
|
|
|
|
# Success/failure colors for 0=nothing, 1=symbol, 2=code, 3=both
|
|
|
|
pcmd_colors => 1 ,
|
|
|
|
|
|
|
|
# LOAD AVERAGE
|
|
|
|
# - Minimal load average before the section is displayed
|
2020-10-20 12:12:23 +02:00
|
|
|
load_min => 13 ,
|
|
|
|
|
|
|
|
# GIT
|
|
|
|
# - Branches for which the prompt should emit a strong warning
|
|
|
|
git_branch_danger => [ 'main' , 'master' ] ,
|
|
|
|
# - Branches for which the prompt should emit a weak warning
|
|
|
|
git_branch_warn => [ 'dev' , 'develop' ] ,
|
|
|
|
# - Warning mode for detached heads (0=none, 1=weak, 2=strong)
|
|
|
|
git_detached_warning => 2 ,
|
|
|
|
# - Show git status?
|
|
|
|
git_show_status => 1 ,
|
|
|
|
# - Show git stash count?
|
|
|
|
git_show_stash => 1 ,
|
2020-10-19 21:05:11 +02:00
|
|
|
);
|
|
|
|
|
2020-10-21 12:39:23 +02:00
|
|
|
# Default theme -------------------------------------------------------------{{{
|
2020-10-20 13:51:43 +02:00
|
|
|
|
2020-10-21 12:39:23 +02:00
|
|
|
sub default_theme
|
2020-10-20 16:12:26 +02:00
|
|
|
{
|
2020-10-21 12:39:23 +02:00
|
|
|
return {
|
|
|
|
# Padding character
|
|
|
|
'padding' => ' ',
|
|
|
|
|
|
|
|
# Extra colors for transition strings
|
|
|
|
'transition' => [ 7 ] ,
|
|
|
|
# Left side of top line
|
|
|
|
'bg_left' => 0,
|
|
|
|
'fg_left' => 7,
|
|
|
|
'left_prefix' => '' ,
|
|
|
|
'left_separator' => ' ' ,
|
|
|
|
'left_suffix' => '\f2 | ' ,
|
|
|
|
# Middle of top line
|
|
|
|
'bg_middle' => 0,
|
|
|
|
'fg_middle' => 7,
|
|
|
|
'middle_prefix' => ' ',
|
|
|
|
'middle_separator' => ' ',
|
|
|
|
'middle_suffix' => ' ',
|
|
|
|
# Right side of top line
|
|
|
|
'bg_right' => 0,
|
|
|
|
'fg_right' => 7,
|
|
|
|
'right_prefix' => '\f2 | ' ,
|
|
|
|
'right_separator' => ' ' ,
|
|
|
|
'right_suffix' => '' ,
|
|
|
|
# Input line
|
|
|
|
'bg_input' => 0,
|
|
|
|
'fg_input' => 7,
|
|
|
|
'input_prefix' => '' ,
|
|
|
|
'input_separator' => '\f2:' ,
|
|
|
|
'input_suffix' => '\f2 ; ' ,
|
|
|
|
# Secondary prompt
|
|
|
|
'bg_ps2' => 0,
|
|
|
|
ps2_suffix => ' : ' ,
|
2020-10-20 16:12:26 +02:00
|
|
|
|
|
|
|
# Current working directory - Truncation string
|
2020-10-21 12:39:23 +02:00
|
|
|
cwd_trunc => '...' ,
|
2020-10-20 16:12:26 +02:00
|
|
|
# Current working directory - Foreground / background colors
|
2020-10-21 12:39:23 +02:00
|
|
|
'cwd_fg_color' => 12 ,
|
|
|
|
'cwd_bg_color' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
|
|
|
|
# User@host - Remote host symbol
|
2020-10-21 12:39:23 +02:00
|
|
|
'uh_remote_symbol' => '(r)',
|
2020-10-20 16:12:26 +02:00
|
|
|
# User@host - User - Foreground and background colors
|
2020-10-21 12:39:23 +02:00
|
|
|
'uh_user_fg' => 10 ,
|
|
|
|
'uh_user_bg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
# User@host - Root - Foreground and background colors
|
2020-10-21 12:39:23 +02:00
|
|
|
'uh_root_fg' => 9 ,
|
|
|
|
'uh_root_bg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
|
|
|
|
# Date/time - Colors
|
2020-10-21 12:39:23 +02:00
|
|
|
'dt_time_fg' => -1 ,
|
|
|
|
'dt_date_fg' => -1 ,
|
|
|
|
'dt_bg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
|
|
|
|
# Previous command state - Symbols
|
2020-10-21 12:39:23 +02:00
|
|
|
'pcmd_ok_sym' => 'OK',
|
|
|
|
'pcmd_err_sym' => 'ERR',
|
2020-10-20 16:12:26 +02:00
|
|
|
# Previous command state - OK text / background color
|
2020-10-21 12:39:23 +02:00
|
|
|
'pcmd_ok_fg' => -1 ,
|
|
|
|
'pcmd_ok_bg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
# Previous command state - Error text / background color
|
2020-10-21 12:39:23 +02:00
|
|
|
'pcmd_err_fg' => -1 ,
|
|
|
|
'pcmd_err_bg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
# Previous command state - Other text foreground
|
2020-10-21 12:39:23 +02:00
|
|
|
'pcmd_text_fg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
|
|
|
|
# Load average - Symbol or text
|
2020-10-21 12:39:23 +02:00
|
|
|
'load_title' => 'ld',
|
2020-10-20 16:12:26 +02:00
|
|
|
# Load average - Low load colors
|
2020-10-21 12:39:23 +02:00
|
|
|
'load_low_fg' => -1,
|
|
|
|
'load_low_bg' => -1,
|
2020-10-20 16:12:26 +02:00
|
|
|
# Load average - Medium load colors
|
2020-10-21 12:39:23 +02:00
|
|
|
'load_med_fg' => -1 ,
|
|
|
|
'load_med_bg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
# Load average - High load colors
|
2020-10-21 12:39:23 +02:00
|
|
|
'load_high_fg' => -1 ,
|
|
|
|
'load_high_bg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
|
2020-10-21 12:39:23 +02:00
|
|
|
# Git - Branch symbol
|
|
|
|
'git_branch_symbol' => 'B ',
|
2020-10-20 16:12:26 +02:00
|
|
|
# Git - Branch colors - No warning
|
2020-10-21 12:39:23 +02:00
|
|
|
'git_branch_ok_bg' => -1 ,
|
|
|
|
'git_branch_ok_fg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
# Git - Branch colors - Weak warning
|
2020-10-21 12:39:23 +02:00
|
|
|
'git_branch_warn_bg' => -1 ,
|
|
|
|
'git_branch_warn_fg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
# Git - Branch colors - Strong warning
|
2020-10-21 12:39:23 +02:00
|
|
|
'git_branch_danger_bg' => -1 ,
|
|
|
|
'git_branch_danger_fg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
# Git - Repo state colors
|
2020-10-21 12:39:23 +02:00
|
|
|
'git_repstate_bg' => -1 ,
|
|
|
|
'git_repstate_fg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
# Git - Padding character for status sections
|
2020-10-21 12:39:23 +02:00
|
|
|
'git_status_pad' => '' ,
|
2020-10-20 16:12:26 +02:00
|
|
|
# Git - Untracked symbol and colors
|
2020-10-21 12:39:23 +02:00
|
|
|
'git_untracked_symbol' => 'U ',
|
|
|
|
'git_untracked_bg' => -1 ,
|
|
|
|
'git_untracked_normal_fg' => -1 ,
|
|
|
|
'git_untracked_add_fg' => -1 ,
|
|
|
|
'git_untracked_mod_fg' => -1 ,
|
|
|
|
'git_untracked_del_fg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
# Git - Indexed symbol and colors
|
2020-10-21 12:39:23 +02:00
|
|
|
'git_indexed_symbol' => 'I ',
|
|
|
|
'git_indexed_bg' => -1 ,
|
|
|
|
'git_indexed_normal_fg' => -1 ,
|
|
|
|
'git_indexed_add_fg' => -1 ,
|
|
|
|
'git_indexed_mod_fg' => -1 ,
|
|
|
|
'git_indexed_del_fg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
# Git - Add/modify/delete symbols
|
2020-10-21 12:39:23 +02:00
|
|
|
'git_add_symbol' => '+' ,
|
|
|
|
'git_mod_symbol' => '~',
|
|
|
|
'git_del_symbol' => '-',
|
2020-10-20 16:12:26 +02:00
|
|
|
# Git stash symbol and color
|
2020-10-21 12:39:23 +02:00
|
|
|
'git_stash_symbol' => 'S ',
|
|
|
|
'git_stash_bg' => -1 ,
|
|
|
|
'git_stash_fg' => -1 ,
|
2020-10-20 16:12:26 +02:00
|
|
|
|
|
|
|
# Python virtual environment section colors
|
2020-10-21 12:39:23 +02:00
|
|
|
'pyenv_fg' => -1,
|
|
|
|
'pyenv_bg' => -1,
|
2020-10-20 16:12:26 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-10-21 12:39:23 +02:00
|
|
|
# }}}
|
2020-10-21 09:45:17 +02:00
|
|
|
# }}}
|
|
|
|
# MAIN PROGRAM =============================================================={{{
|
2020-10-19 21:05:11 +02:00
|
|
|
|
2020-10-21 09:45:17 +02:00
|
|
|
our $COLUMNS;
|
2020-10-19 21:05:11 +02:00
|
|
|
our %TCCACHE = ();
|
2020-10-20 17:12:16 +02:00
|
|
|
our %TLEN = ();
|
|
|
|
our %SCACHE = ();
|
2020-10-21 12:39:23 +02:00
|
|
|
our %THEME = ();
|
|
|
|
|
|
|
|
# Terminal commands ---------------------------------------------------------{{{
|
2020-10-19 21:05:11 +02:00
|
|
|
|
|
|
|
sub tput_sequence
|
|
|
|
{
|
|
|
|
my $args = shift;
|
|
|
|
return $TCCACHE{ $args } if exists $TCCACHE{ $args };
|
|
|
|
open( my $fh , "tput $args|" );
|
|
|
|
my $value = <$fh>;
|
|
|
|
close( $fh );
|
|
|
|
return ( $TCCACHE{ $args } = "\\[$value\\]" );
|
|
|
|
}
|
|
|
|
|
|
|
|
sub set_color
|
|
|
|
{
|
|
|
|
my ( $type , $index ) = @_;
|
|
|
|
return tput_sequence( "seta$type $index" );
|
|
|
|
}
|
|
|
|
|
2020-10-21 12:39:23 +02:00
|
|
|
#}}}
|
|
|
|
# Theming support -----------------------------------------------------------{{{
|
|
|
|
|
|
|
|
sub thref($) { bless {r=>$_[0]}, 'ThemeRef'; }
|
|
|
|
|
|
|
|
sub load_theme
|
|
|
|
{
|
|
|
|
my $theme = $CONFIG{layout_theme};
|
|
|
|
return default_theme unless $theme;
|
|
|
|
|
|
|
|
my $warn = $CONFIG{cfg_warn_files};
|
|
|
|
my @tdirs = (
|
|
|
|
( map { $ENV{HOME} . '/' . $_ } @{$CONFIG{cfg_user_themes}} ) ,
|
|
|
|
@{$CONFIG{cfg_sys_themes}}
|
|
|
|
);
|
|
|
|
foreach my $dir ( @tdirs ) {
|
|
|
|
my $path = "$dir/${theme}.pm";
|
|
|
|
next unless -f $path;
|
|
|
|
my $data = do $path;
|
|
|
|
if ( $@ ) {
|
|
|
|
warn "could not parse `$path': $@" if $warn;
|
|
|
|
} elsif ( !defined $data ) {
|
|
|
|
warn "could not do `$path': $!\n" if $warn;
|
|
|
|
} elsif ( !$data ) {
|
|
|
|
warn "could not run `$path'\n" if $warn;
|
|
|
|
} elsif ( ref( $data ) ne 'HASH' ) {
|
|
|
|
warn "`$path' does not contain a hash\n" if $warn;
|
|
|
|
} else {
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return default_theme;
|
|
|
|
}
|
|
|
|
|
2020-10-20 13:51:43 +02:00
|
|
|
sub theme_resolve
|
|
|
|
{
|
2020-10-21 12:39:23 +02:00
|
|
|
my ( $key , $stack ) = @_;
|
|
|
|
|
|
|
|
$stack = {} unless defined $stack;
|
|
|
|
if ( exists $stack->{ $key } ) {
|
|
|
|
warn "inifinite loop in theme ($key)\n";
|
|
|
|
return undef;
|
|
|
|
}
|
|
|
|
$stack->{ $key } = 1;
|
|
|
|
|
|
|
|
my $value = $THEME{ $key };
|
2020-10-20 13:51:43 +02:00
|
|
|
if ( ref( $value ) eq 'ThemeRef' ) {
|
2020-10-21 12:39:23 +02:00
|
|
|
$THEME{ $key } = theme_resolve( $value->{r} );
|
|
|
|
$value = $THEME{ $key };
|
2020-10-20 13:51:43 +02:00
|
|
|
}
|
2020-10-21 12:39:23 +02:00
|
|
|
|
2020-10-20 13:51:43 +02:00
|
|
|
return $value;
|
|
|
|
}
|
2020-10-21 12:39:23 +02:00
|
|
|
|
2020-10-19 23:42:19 +02:00
|
|
|
sub themed($)
|
|
|
|
{
|
|
|
|
my $k = shift;
|
2020-10-21 12:39:23 +02:00
|
|
|
unless ( %THEME ) {
|
|
|
|
%THEME = ( %{ &load_theme } , %{ $CONFIG{layout_theme_overrides} } );
|
|
|
|
my @to_resolve = grep { ref( $THEME{$_} ) eq 'ThemeRef' } keys %THEME;
|
2020-10-20 13:51:43 +02:00
|
|
|
foreach my $k ( @to_resolve ) {
|
2020-10-21 12:39:23 +02:00
|
|
|
theme_resolve( $k );
|
2020-10-20 13:51:43 +02:00
|
|
|
}
|
2020-10-19 23:42:19 +02:00
|
|
|
}
|
2020-10-21 12:39:23 +02:00
|
|
|
return $THEME{ $k };
|
2020-10-19 23:42:19 +02:00
|
|
|
}
|
|
|
|
|
2020-10-21 12:39:23 +02:00
|
|
|
#}}}
|
|
|
|
# Rendering utilities -------------------------------------------------------{{{
|
|
|
|
|
2020-10-19 21:05:11 +02:00
|
|
|
sub get_section_length
|
|
|
|
{
|
|
|
|
my $section = shift;
|
|
|
|
my $len = 0;
|
|
|
|
foreach my $item ( @{ $section->{content} } ) {
|
|
|
|
next if ref $item;
|
|
|
|
$len += length $item;
|
|
|
|
}
|
|
|
|
return $len;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_length
|
|
|
|
{
|
|
|
|
my $len = 0;
|
|
|
|
foreach my $section ( @_ ) {
|
|
|
|
$len += get_section_length( $section );
|
|
|
|
}
|
|
|
|
return $len;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub gen_transition
|
|
|
|
{
|
|
|
|
my $transition = shift;
|
2020-10-19 23:42:19 +02:00
|
|
|
my @colors = ( @_ , @{ themed 'transition' } );
|
2020-10-19 21:05:11 +02:00
|
|
|
my $state = 0;
|
|
|
|
my $pc;
|
|
|
|
my $out = [ ];
|
|
|
|
foreach my $char ( split // , $transition ) {
|
|
|
|
if ( $state == 1 ) {
|
|
|
|
if ( $char eq 'f' || $char eq 'b' ) {
|
|
|
|
$pc = $char;
|
|
|
|
$state = 2;
|
|
|
|
} else {
|
|
|
|
$state = 0;
|
|
|
|
push @$out , "\\$char";
|
|
|
|
}
|
|
|
|
} elsif ( $state == 2 ) {
|
|
|
|
$char = '0' unless $char =~ /^\d$/;
|
|
|
|
push @$out , { $pc . 'g' => $colors[ int($char) ] };
|
|
|
|
$state = 0;
|
|
|
|
} elsif ( $char eq '\\' ) {
|
|
|
|
$state = 1;
|
|
|
|
} else {
|
|
|
|
push @$out , $char;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return { content => $out };
|
|
|
|
}
|
|
|
|
|
|
|
|
sub compute_trans_lengths
|
|
|
|
{
|
|
|
|
my %out = ();
|
|
|
|
foreach my $side ( qw( left right input ) ) {
|
|
|
|
foreach my $type ( qw( prefix separator suffix ) ) {
|
|
|
|
my $k = $side . '_' . $type;
|
|
|
|
$out{ $k } = get_section_length( gen_transition(
|
2020-10-19 23:42:19 +02:00
|
|
|
themed $k , 1 , 2 ) );
|
2020-10-19 21:05:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return %out;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub gen_prompt_section
|
|
|
|
{
|
|
|
|
my $section = shift;
|
2020-10-20 17:12:16 +02:00
|
|
|
unless ( exists $SCACHE{ $section } ) {
|
|
|
|
no strict 'refs';
|
|
|
|
my $func = 'render_' . $section;
|
|
|
|
$SCACHE{ $section } = [ &$func ];
|
|
|
|
}
|
|
|
|
return @{ $SCACHE{ $section } };
|
2020-10-19 21:05:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub gen_prompt_sections
|
|
|
|
{
|
2020-10-20 12:12:23 +02:00
|
|
|
my $reverse = shift;
|
|
|
|
my @input = @_;
|
|
|
|
@input = reverse @input if $reverse;
|
2020-10-19 21:05:11 +02:00
|
|
|
my @output = ( );
|
2020-10-20 12:12:23 +02:00
|
|
|
foreach my $section ( @input ) {
|
|
|
|
my @section = gen_prompt_section( $section );
|
|
|
|
@section = reverse @section if $reverse;
|
|
|
|
@output = ( @output , @section );
|
2020-10-19 21:05:11 +02:00
|
|
|
}
|
|
|
|
return @output;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub adapt_to_width
|
|
|
|
{
|
|
|
|
my ( $length , $side , @input ) = @_;
|
|
|
|
my $minTransLen = $TLEN{ $side . '_prefix' } + $TLEN{ $side . '_suffix' };
|
|
|
|
my @output = ( );
|
|
|
|
foreach my $section ( @input ) {
|
|
|
|
my $slen = get_section_length( $section );
|
|
|
|
my $rlen = $minTransLen
|
|
|
|
+ scalar( @output ) * $TLEN{ $side . '_separator' };
|
|
|
|
last if $$length + $slen + $rlen > $COLUMNS;
|
|
|
|
push @output , $section;
|
|
|
|
$$length += $slen;
|
|
|
|
}
|
|
|
|
if ( @output ) {
|
|
|
|
$$length += $minTransLen
|
|
|
|
+ ( scalar( @output ) - 1 ) * $TLEN{ $side . '_separator' };
|
|
|
|
}
|
|
|
|
return @output;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub add_transitions
|
|
|
|
{
|
|
|
|
my $name = shift;
|
|
|
|
my $cBefore = shift;
|
|
|
|
my $cAfter = shift;
|
|
|
|
|
2020-10-19 23:42:19 +02:00
|
|
|
my $prefix = themed( $name . '_prefix' );
|
|
|
|
my $separator = themed( $name . '_separator' );
|
|
|
|
my $suffix = themed( $name . '_suffix' );
|
2020-10-20 13:51:43 +02:00
|
|
|
my $bgDefault = themed( 'bg_' . $name );
|
2020-10-19 21:05:11 +02:00
|
|
|
|
|
|
|
my $prevBg = undef;
|
|
|
|
my $curBg = $cBefore;
|
|
|
|
my @out = ( );
|
|
|
|
foreach my $section ( @_ ) {
|
|
|
|
$prevBg = $curBg;
|
|
|
|
$curBg = ( exists $section->{bg} ) ? $section->{bg} : -1;
|
2020-10-20 13:51:43 +02:00
|
|
|
$curBg = $bgDefault if $curBg < 0;
|
2020-10-19 21:05:11 +02:00
|
|
|
my $trans = scalar(@out) ? $separator : $prefix;
|
|
|
|
@out = ( @out ,
|
|
|
|
gen_transition( $trans , $prevBg , $curBg ) ,
|
|
|
|
$section ,
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
@out = ( @out , gen_transition( $suffix , $curBg , $cAfter ) ) if @out;
|
|
|
|
return @out;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub render
|
|
|
|
{
|
|
|
|
my $name = shift;
|
|
|
|
|
|
|
|
my $out = '';
|
|
|
|
my $mustSetFg = undef;
|
|
|
|
my $mustSetBg = undef;
|
2020-10-20 13:51:43 +02:00
|
|
|
my $bgDefault = themed( 'bg_' . $name );
|
|
|
|
my $fgDefault = themed( 'fg_' . $name );
|
2020-10-19 21:05:11 +02:00
|
|
|
foreach my $section ( @_ ) {
|
|
|
|
$mustSetBg = $section->{bg} if exists $section->{bg};
|
|
|
|
foreach my $part ( @{ $section->{content} } ) {
|
|
|
|
if ( ref $part ) {
|
|
|
|
$mustSetBg = $part->{bg} if exists $part->{bg};
|
|
|
|
$mustSetFg = $part->{fg} if exists $part->{fg};
|
|
|
|
} else {
|
|
|
|
if ( defined $mustSetBg ) {
|
2020-10-20 13:51:43 +02:00
|
|
|
$mustSetBg = $bgDefault if $mustSetBg < 0;
|
2020-10-19 21:05:11 +02:00
|
|
|
$out .= set_color( 'b' , $mustSetBg );
|
|
|
|
}
|
|
|
|
if ( defined $mustSetFg ) {
|
2020-10-20 13:51:43 +02:00
|
|
|
$mustSetFg = $fgDefault if $mustSetFg < 0;
|
2020-10-19 21:05:11 +02:00
|
|
|
$out .= set_color( 'f' , $mustSetFg );
|
|
|
|
}
|
2020-10-19 21:18:01 +02:00
|
|
|
$part =~ s/\\/\\\\/g;
|
|
|
|
$part =~ s/"/\\\"/g;
|
2020-10-19 21:05:11 +02:00
|
|
|
$out .= $part;
|
|
|
|
$mustSetBg = $mustSetFg = undef;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
2020-10-21 12:39:23 +02:00
|
|
|
#}}}
|
|
|
|
# Prompt parts --------------------------------------------------------------{{{
|
|
|
|
|
2020-10-19 21:05:11 +02:00
|
|
|
sub gen_top_line
|
|
|
|
{
|
2020-10-19 21:41:05 +02:00
|
|
|
my @left = @{ $CONFIG{layout_left} };
|
|
|
|
my @right = @{ $CONFIG{layout_right} };
|
|
|
|
my $midGen = $CONFIG{layout_middle};
|
2020-10-21 12:39:23 +02:00
|
|
|
return "" unless ( @left || @right || $midGen );
|
2020-10-19 21:05:11 +02:00
|
|
|
|
|
|
|
# Generate content
|
2020-10-19 21:41:05 +02:00
|
|
|
my ( @lm , @middle , @mr ) = ( );
|
2020-10-19 23:42:19 +02:00
|
|
|
my $mc = themed 'bg_middle';
|
2020-10-20 12:12:23 +02:00
|
|
|
@left = gen_prompt_sections( 0 , @left );
|
2020-10-19 21:41:05 +02:00
|
|
|
if ( defined $midGen ) {
|
|
|
|
@middle = ( gen_prompt_section( $midGen ) );
|
2020-10-19 21:05:11 +02:00
|
|
|
if ( @middle ) {
|
2020-10-19 21:44:48 +02:00
|
|
|
@lm = (
|
2020-10-19 23:42:19 +02:00
|
|
|
gen_transition( themed('middle_prefix') , $mc , $mc ) ,
|
|
|
|
{ bg => themed('bg_middle') } ,
|
2020-10-19 21:44:48 +02:00
|
|
|
);
|
2020-10-19 23:42:19 +02:00
|
|
|
@mr = gen_transition( themed('middle_suffix') , $mc , $mc );
|
2020-10-19 21:05:11 +02:00
|
|
|
foreach my $entry ( @middle ) {
|
|
|
|
delete $entry->{bg};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-20 12:12:23 +02:00
|
|
|
@right = gen_prompt_sections( 1 , @right );
|
2020-10-19 21:05:11 +02:00
|
|
|
|
|
|
|
# Adapt to width
|
|
|
|
my $len = get_length( ( @lm , @middle , @mr ) );
|
|
|
|
@left = adapt_to_width( \$len , 'left' , @left );
|
|
|
|
@right = reverse adapt_to_width( \$len , 'right' , reverse @right );
|
|
|
|
|
|
|
|
# Prepare padding
|
|
|
|
my @mpad = ();
|
|
|
|
if ( $len < $COLUMNS ) {
|
|
|
|
push @mpad , {
|
2020-10-19 23:42:19 +02:00
|
|
|
content => [ themed('padding') x ( $COLUMNS - $len ) ]
|
2020-10-19 21:05:11 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
# Render
|
|
|
|
my $txt = render( 'left' , add_transitions( 'left' , 0 , $mc , @left ) );
|
|
|
|
$txt .= render( 'middle' , @lm , @middle , @mr , @mpad );
|
|
|
|
$txt .= render( 'right' , add_transitions( 'right' , $mc , 0 , @right ) );
|
2020-10-20 13:51:43 +02:00
|
|
|
return $txt . tput_sequence( 'sgr0' ) . "\\n";
|
2020-10-19 21:05:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub gen_input_line
|
|
|
|
{
|
2020-10-19 21:41:05 +02:00
|
|
|
my @input = @{ $CONFIG{layout_input} };
|
|
|
|
return "" unless @input || $CONFIG{layout_input_always};
|
2020-10-19 21:05:11 +02:00
|
|
|
my $len = 0;
|
2020-10-20 12:12:23 +02:00
|
|
|
@input = adapt_to_width( \$len , 'input' ,
|
|
|
|
gen_prompt_sections( 0 , @input ) );
|
2020-10-19 21:05:11 +02:00
|
|
|
push @input , {content=>['']} unless @input;
|
2020-10-19 21:18:01 +02:00
|
|
|
return ( $len ,
|
|
|
|
render( 'input' , add_transitions( 'input' , 0 , 0 , @input ) )
|
2020-10-20 13:51:43 +02:00
|
|
|
. tput_sequence( 'sgr0' )
|
2020-10-19 21:18:01 +02:00
|
|
|
);
|
2020-10-19 21:05:11 +02:00
|
|
|
}
|
|
|
|
|
2020-10-19 21:18:01 +02:00
|
|
|
sub gen_ps2
|
|
|
|
{
|
|
|
|
my $ill = shift;
|
2020-10-19 23:42:19 +02:00
|
|
|
my @line = gen_transition( themed('ps2_suffix') , themed('bg_ps2') , 0 );
|
2020-10-19 21:18:01 +02:00
|
|
|
my $len = get_length( @line );
|
|
|
|
if ( $len < $ill ) {
|
|
|
|
unshift @line , {
|
2020-10-19 23:42:19 +02:00
|
|
|
bg => themed('bg_ps2') ,
|
2020-10-19 21:18:01 +02:00
|
|
|
content => [ ' ' x ( $ill - $len ) ]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return render( 'ps2' , @line ) . tput_sequence( 'sgr0' );
|
|
|
|
}
|
|
|
|
|
2020-10-20 17:35:59 +02:00
|
|
|
sub gen_term_title
|
|
|
|
{
|
|
|
|
my @parts = @{ $CONFIG{term_generators} };
|
|
|
|
return '' unless @parts && $CONFIG{term_set_title};
|
|
|
|
@parts = gen_prompt_sections( 0 , @parts );
|
|
|
|
my @str_parts = ();
|
|
|
|
foreach my $part ( @parts ) {
|
|
|
|
my $cur = '';
|
|
|
|
foreach my $sub ( @{ $part->{content} } ) {
|
|
|
|
next if ref $sub;
|
|
|
|
$cur .= $sub;
|
|
|
|
}
|
|
|
|
$cur =~ s/[^\x20-\x7f]//g;
|
|
|
|
push @str_parts , $cur if $cur;
|
|
|
|
}
|
|
|
|
return '' unless @str_parts;
|
|
|
|
my $main = join( $CONFIG{term_separator} , @str_parts );
|
|
|
|
my $out = '';
|
|
|
|
$out .= "\\033]0;$main\\007" if $CONFIG{term_set_title} & 1;
|
|
|
|
$out .= "\\033]1;$main\\007" if $CONFIG{term_set_title} & 2;
|
2020-10-21 12:45:57 +02:00
|
|
|
$out = "\\[$out\\]" if $out;
|
2020-10-20 17:35:59 +02:00
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
2020-10-21 12:39:23 +02:00
|
|
|
#}}}
|
|
|
|
# Configuration loader ------------------------------------------------------{{{
|
|
|
|
|
2020-10-20 16:32:56 +02:00
|
|
|
sub get_config_overrides
|
|
|
|
{
|
|
|
|
foreach my $k ( keys %CONFIG ) {
|
2020-10-21 12:58:36 +02:00
|
|
|
next unless exists $ENV{ "GPROMPT_" . uc($k) };
|
|
|
|
my $ev = $ENV{ "GPROMPT_" . uc($k) };
|
2020-10-20 16:32:56 +02:00
|
|
|
next if $ev eq '';
|
|
|
|
|
|
|
|
my $vt = ref $CONFIG{ $k };
|
|
|
|
if ( !$vt ) {
|
|
|
|
$CONFIG{ $k } = $ev;
|
|
|
|
} elsif ( $vt eq 'ARRAY' ) {
|
|
|
|
$CONFIG{ $k } = [ map {
|
|
|
|
$_ =~ s/^\s+//; $_ =~ s/\s+$//; $_
|
|
|
|
} ( split /,/ , $ev ) ];
|
|
|
|
} elsif ( $vt eq 'HASH' ) {
|
|
|
|
$CONFIG{ $k } = { map {
|
|
|
|
$_ =~ s/^\s+//; $_ =~ s/\s+$//; split /:/ , $_ , 2
|
|
|
|
} ( split /,/ , $ev ) };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-21 10:00:13 +02:00
|
|
|
sub load_config
|
|
|
|
{
|
2020-10-21 12:58:36 +02:00
|
|
|
my @cfg_files = (
|
|
|
|
'/etc/gprompt-defaults.rc' ,
|
|
|
|
"$ENV{HOME}/.gprompt.rc"
|
|
|
|
);
|
|
|
|
foreach my $cfg_file ( @cfg_files ) {
|
2020-10-21 10:00:13 +02:00
|
|
|
next unless -f $cfg_file;
|
|
|
|
my $data = do $cfg_file;
|
|
|
|
my $warn = $CONFIG{cfg_warn_files};
|
|
|
|
if ( $@ ) {
|
|
|
|
warn "could not parse `$cfg_file': $@" if $warn;
|
|
|
|
} elsif ( !defined $data ) {
|
|
|
|
warn "could not do `$cfg_file': $!\n" if $warn;
|
|
|
|
} elsif ( !$data ) {
|
|
|
|
warn "could not run `$cfg_file'\n" if $warn;
|
|
|
|
} elsif ( ref( $data ) ne 'HASH' ) {
|
|
|
|
warn "`$cfg_file' does not contain a hash\n" if $warn;
|
|
|
|
} else {
|
|
|
|
%CONFIG = ( %CONFIG , %$data );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
get_config_overrides if $CONFIG{cfg_from_env};
|
|
|
|
}
|
|
|
|
|
2020-10-21 12:39:23 +02:00
|
|
|
#}}}
|
|
|
|
|
2020-10-21 09:45:17 +02:00
|
|
|
sub main
|
|
|
|
{
|
2020-10-21 10:00:13 +02:00
|
|
|
load_config;
|
2020-10-21 09:45:17 +02:00
|
|
|
chop( $COLUMNS = `tput cols` );
|
|
|
|
%TLEN = compute_trans_lengths;
|
|
|
|
my $pg = gen_term_title;
|
|
|
|
my $ps1 = $pg . gen_top_line;
|
|
|
|
my ( $ill , $ilt ) = gen_input_line;
|
|
|
|
$ps1 .= $ilt;
|
|
|
|
my $ps2 = $pg . gen_ps2( $ill );
|
|
|
|
print "export PS1=\"$ps1\" PS2=\"$ps2\"\n";
|
|
|
|
}
|
2020-10-19 21:05:11 +02:00
|
|
|
|
2020-10-21 09:45:17 +02:00
|
|
|
main;
|
2020-10-20 12:12:23 +02:00
|
|
|
|
2020-10-21 09:45:17 +02:00
|
|
|
# }}}
|
|
|
|
# SECTION RENDERERS ========================================================={{{
|
2020-10-19 21:05:11 +02:00
|
|
|
|
2020-10-21 09:45:17 +02:00
|
|
|
# Date/time -----------------------------------------------------------------{{{
|
2020-10-20 12:12:23 +02:00
|
|
|
|
2020-10-19 21:05:11 +02:00
|
|
|
sub render_datetime
|
|
|
|
{
|
|
|
|
my @cur_time = localtime time;
|
|
|
|
my @out = ( );
|
|
|
|
if ( $CONFIG{dt_show_date} ) {
|
2020-10-19 23:42:19 +02:00
|
|
|
push @out , {fg=>themed 'dt_date_fg'};
|
2020-10-19 21:05:11 +02:00
|
|
|
push @out , ( strftime $CONFIG{dt_date_fmt}, @cur_time )
|
|
|
|
}
|
|
|
|
if ( $CONFIG{dt_show_time} ) {
|
|
|
|
push @out, ' ' if @out;
|
2020-10-19 23:42:19 +02:00
|
|
|
push @out , {fg=>themed 'dt_time_fg'};
|
2020-10-19 21:05:11 +02:00
|
|
|
push @out , ( strftime $CONFIG{dt_time_fmt}, @cur_time )
|
|
|
|
}
|
2020-10-19 23:42:19 +02:00
|
|
|
return { bg => themed 'dt_bg' , content => [@out] };
|
2020-10-19 21:05:11 +02:00
|
|
|
}
|
|
|
|
|
2020-10-21 09:45:17 +02:00
|
|
|
#}}}
|
|
|
|
# Current working directory -------------------------------------------------{{{
|
2020-10-20 12:12:23 +02:00
|
|
|
|
2020-10-19 21:05:11 +02:00
|
|
|
sub render_cwd
|
|
|
|
{
|
|
|
|
use Cwd;
|
|
|
|
my $cwd = getcwd;
|
|
|
|
|
|
|
|
( my $dir = $cwd ) =~ s!^.*/!!;
|
|
|
|
my $max_len = int( $COLUMNS * $CONFIG{cwd_max_width} / 100 );
|
|
|
|
$max_len = length( $dir ) if length( $dir ) > $max_len;
|
|
|
|
|
|
|
|
( $dir = $cwd ) =~ s!^$ENV{HOME}(\z|/.*)$!~$1!;
|
|
|
|
my $offset = length( $dir ) - $max_len;
|
|
|
|
if ( $offset > 0 ) {
|
|
|
|
$dir = substr $dir , $offset , $max_len;
|
2020-10-19 23:42:19 +02:00
|
|
|
my $t = themed 'cwd_trunc';
|
|
|
|
$dir =~ s!^[^/]*/!$t/!;
|
2020-10-19 21:05:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2020-10-19 23:42:19 +02:00
|
|
|
bg => themed 'cwd_bg_color' ,
|
|
|
|
content => [ {fg=>themed 'cwd_fg_color'} , $dir ]
|
2020-10-19 21:05:11 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-10-21 09:45:17 +02:00
|
|
|
# }}}
|
|
|
|
# User/Host -----------------------------------------------------------------{{{
|
2020-10-20 12:12:23 +02:00
|
|
|
|
2020-10-19 21:05:11 +02:00
|
|
|
sub render_userhost
|
|
|
|
{
|
|
|
|
use Sys::Hostname;
|
|
|
|
my ( $un , $hn , $rm ) = map {
|
|
|
|
$CONFIG{"uh_$_"}
|
|
|
|
} qw( username hostname remote );
|
|
|
|
return () unless $un || $hn || $rm;
|
|
|
|
|
|
|
|
my $is_remote = 0;
|
|
|
|
if ( $hn == 2 || $CONFIG{uh_remote} ) {
|
|
|
|
foreach my $ev ( qw( SSH_CLIENT SSH2_CLIENT SSH_TTY ) ) {
|
2020-10-20 20:35:33 +02:00
|
|
|
if ( exists($ENV{$ev}) && $ENV{$ev} ne '' ) {
|
2020-10-19 21:05:11 +02:00
|
|
|
$is_remote = 1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
my $str = '';
|
|
|
|
if ( $un ) {
|
2020-10-20 20:41:20 +02:00
|
|
|
$str .= getpwuid( $< ) || '(?)';
|
2020-10-19 21:05:11 +02:00
|
|
|
}
|
|
|
|
if ( $hn == 1 || ( $hn == 2 && $is_remote ) ) {
|
|
|
|
$str .= '@' if $str;
|
|
|
|
$str .= hostname;
|
|
|
|
}
|
|
|
|
if ( $rm && $is_remote ) {
|
2020-10-19 23:42:19 +02:00
|
|
|
$str .= themed 'uh_remote_symbol';
|
2020-10-19 21:05:11 +02:00
|
|
|
}
|
|
|
|
return () unless $str;
|
|
|
|
|
|
|
|
return {
|
2020-10-19 23:42:19 +02:00
|
|
|
bg => themed( ( $> == 0 ) ? 'uh_root_bg' : 'uh_user_bg' ) ,
|
2020-10-19 21:05:11 +02:00
|
|
|
content => [
|
2020-10-19 23:42:19 +02:00
|
|
|
{ fg => themed( ( $> == 0 ) ? 'uh_root_fg' : 'uh_user_fg' ) } ,
|
2020-10-19 21:05:11 +02:00
|
|
|
$str
|
|
|
|
] ,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-10-21 09:45:17 +02:00
|
|
|
# }}}
|
|
|
|
# Previous command state ----------------------------------------------------{{{
|
2020-10-20 12:12:23 +02:00
|
|
|
|
2020-10-19 21:05:11 +02:00
|
|
|
sub render_prevcmd
|
|
|
|
{
|
|
|
|
my ( $ss , $sc , $pc , $cl ) = map {
|
|
|
|
$CONFIG{ "pcmd_$_" }
|
|
|
|
} qw( show_symbol show_code pad_code colors );
|
2020-10-19 21:28:49 +02:00
|
|
|
my $status = scalar(@ARGV) ? $ARGV[0] : 255;
|
2020-10-19 21:05:11 +02:00
|
|
|
$sc = ( $sc == 1 || ( $sc == 2 && $status ) );
|
|
|
|
return () unless $sc || $ss;
|
|
|
|
|
2020-10-19 23:42:19 +02:00
|
|
|
my $col = themed( ( $status == 0 ) ? 'pcmd_ok_fg' : 'pcmd_err_fg' );
|
2020-10-19 21:05:11 +02:00
|
|
|
my @out = ();
|
|
|
|
if ( $ss ) {
|
2020-10-20 13:51:43 +02:00
|
|
|
push @out , { fg => ( ( $cl & 1 ) != 0 ) ? $col : -1 };
|
2020-10-20 16:12:26 +02:00
|
|
|
push @out , themed( $status == 0 ? 'pcmd_ok_sym' : 'pcmd_err_sym' );
|
2020-10-19 21:05:11 +02:00
|
|
|
}
|
|
|
|
if ( $sc ) {
|
|
|
|
push @out , ' ' if @out;
|
2020-10-20 13:51:43 +02:00
|
|
|
push @out , { fg => ( ( ( $cl & 2 ) != 0 ) ? $col : -1 ) };
|
2020-10-19 21:05:11 +02:00
|
|
|
if ( $pc ) {
|
|
|
|
my $str = sprintf '%' . ( $pc * 3 ) . 's' , $status;
|
2020-10-19 23:42:19 +02:00
|
|
|
my $pad = themed 'padding';
|
|
|
|
$str =~ s/ /$pad/g;
|
2020-10-19 21:05:11 +02:00
|
|
|
push @out , $str;
|
|
|
|
} else {
|
|
|
|
push @out , $status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2020-10-19 23:42:19 +02:00
|
|
|
bg => themed( ( $status == 0 ) ? 'pcmd_ok_bg' : 'pcmd_err_bg' ) ,
|
2020-10-19 21:05:11 +02:00
|
|
|
content => [ @out ] ,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-10-21 09:45:17 +02:00
|
|
|
# }}}
|
|
|
|
# Load average --------------------------------------------------------------{{{
|
2020-10-20 12:12:23 +02:00
|
|
|
|
2020-10-19 21:05:11 +02:00
|
|
|
sub render_load
|
|
|
|
{
|
|
|
|
my $ncpu;
|
|
|
|
if ( open( my $fh , '</proc/cpuinfo' ) ) {
|
|
|
|
while ( my $l = <$fh> ) {
|
|
|
|
$ncpu++ if $l =~ /^[Pp]rocessor/;
|
|
|
|
}
|
|
|
|
close $fh;
|
|
|
|
} else {
|
|
|
|
$ncpu = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $load;
|
|
|
|
return () unless open( my $fh , '/proc/loadavg' );
|
|
|
|
chop( $load = <$fh> );
|
|
|
|
close $fh;
|
|
|
|
$load =~ s/ .*$//;
|
|
|
|
$load = int( $load * 100 / $ncpu );
|
|
|
|
return () if $load < $CONFIG{load_min};
|
|
|
|
|
|
|
|
my $cat;
|
|
|
|
if ( $load < 34 ) {
|
|
|
|
$cat = 'low';
|
|
|
|
} elsif ( $load < 68 ) {
|
|
|
|
$cat = 'med';
|
|
|
|
} else {
|
|
|
|
$cat = 'high';
|
|
|
|
}
|
|
|
|
|
2020-10-19 23:42:19 +02:00
|
|
|
$load = (themed 'load_title') . $load . '%';
|
2020-10-19 21:05:11 +02:00
|
|
|
return {
|
2020-10-19 23:42:19 +02:00
|
|
|
bg => themed( 'load_' . $cat . '_bg' ) ,
|
|
|
|
content => [ {fg=>themed( 'load_' . $cat . '_fg' )}, $load ]
|
2020-10-19 21:05:11 +02:00
|
|
|
};
|
|
|
|
}
|
2020-10-20 12:12:23 +02:00
|
|
|
|
2020-10-21 09:45:17 +02:00
|
|
|
# }}}
|
|
|
|
# Git repository information ------------------------------------------------{{{
|
2020-10-20 12:12:23 +02:00
|
|
|
|
|
|
|
sub _render_git_branch
|
|
|
|
{
|
|
|
|
# Get branch and associated warning level
|
|
|
|
chop( my $branch = `git symbolic-ref -q HEAD` );
|
|
|
|
my $detached = ( $? != 0 );
|
|
|
|
my $branch_warning;
|
|
|
|
if ( $detached ) {
|
|
|
|
chop( $branch = `git rev-parse --short -q HEAD` );
|
|
|
|
$branch = "($branch)";
|
|
|
|
$branch_warning = $CONFIG{git_detached_warning};
|
|
|
|
} else {
|
|
|
|
$branch =~ s!^refs/heads/!!;
|
|
|
|
my %branch_tab = (
|
|
|
|
( map { $_ => 1 } @{ $CONFIG{git_branch_warn} } ) ,
|
|
|
|
( map { $_ => 2 } @{ $CONFIG{git_branch_danger} } ) ,
|
|
|
|
);
|
|
|
|
#use Data::Dumper; print STDERR Dumper( \%branch_tab );
|
|
|
|
$branch_warning = exists( $branch_tab{ $branch } )
|
|
|
|
? $branch_tab{ $branch } : 0;
|
|
|
|
}
|
|
|
|
$branch_warning = qw(ok warn danger)[ $branch_warning ];
|
|
|
|
return {
|
|
|
|
bg => themed( 'git_branch_' . $branch_warning . '_bg' ) ,
|
|
|
|
content => [
|
|
|
|
{fg => themed( 'git_branch_' . $branch_warning . '_fg' )} ,
|
|
|
|
themed( 'git_branch_symbol' ) . $branch
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
sub _render_git_repstate
|
|
|
|
{
|
|
|
|
return () unless open( my $fh ,
|
|
|
|
'git rev-parse --git-dir --is-inside-git-dir '
|
|
|
|
. '--is-bare-repository 2>/dev/null|' );
|
|
|
|
chop( my $gd = <$fh> );
|
|
|
|
chop( my $igd = <$fh> );
|
|
|
|
chop( my $bare = <$fh> );
|
|
|
|
|
|
|
|
my $str = undef;
|
|
|
|
if ( $bare eq 'true' ) {
|
|
|
|
$str = 'bare';
|
|
|
|
} elsif ( $igd eq 'true' ) {
|
|
|
|
$str = 'in git dir';
|
|
|
|
} else {
|
|
|
|
if ( -f "$gd/MERGE_HEAD" ) {
|
|
|
|
$str = 'merge';
|
|
|
|
} elsif ( -d "$gd/rebase-apply" || -d "$gd/rebase-merge" ) {
|
|
|
|
$str = 'rebase';
|
|
|
|
} elsif ( -f "$gd/CHERRY_PICK_HEAD" ) {
|
|
|
|
$str = 'cherry-pick';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return () unless defined $str;
|
|
|
|
return {
|
|
|
|
bg => themed 'git_repstate_bg' ,
|
|
|
|
content => [
|
|
|
|
{fg=>themed 'git_repstate_fg'},
|
|
|
|
$str
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
sub _render_git_status
|
|
|
|
{
|
|
|
|
# Read status information
|
|
|
|
my %parts = (
|
|
|
|
'\?\?' => 0 ,
|
|
|
|
'.M' => 1 ,
|
|
|
|
'.D' => 2 ,
|
|
|
|
'A.' => 3 ,
|
2020-10-21 12:59:02 +02:00
|
|
|
'R.' => 4 ,
|
2020-10-20 12:12:23 +02:00
|
|
|
'M.' => 4 ,
|
|
|
|
'D.' => 5 ,
|
|
|
|
);
|
|
|
|
my @counters = ( 0 ) x 6;
|
|
|
|
if ( open( my $fh , 'git status --porcelain 2>/dev/null |' ) ) {
|
|
|
|
while ( my $line = <$fh> ) {
|
|
|
|
my $sol = substr $line , 0 , 2;
|
|
|
|
foreach my $re ( keys %parts ) {
|
|
|
|
$counters[ $parts{ $re } ] ++
|
|
|
|
if $sol =~ /^$re$/;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close $fh;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Generate status sections
|
|
|
|
my @sec_names = ( 'untracked' , 'indexed' );
|
|
|
|
my @sec_parts = ( 'normal' , 'add' , 'mod' , 'del' );
|
|
|
|
my @part_syms = map { themed( 'git_' . $_ . '_symbol' ) } @sec_parts[1..3];
|
2020-10-20 13:56:28 +02:00
|
|
|
my $pad = themed( 'git_status_pad' );
|
2020-10-20 12:12:23 +02:00
|
|
|
my @out = ();
|
|
|
|
foreach my $sidx ( 0..1 ) {
|
|
|
|
my $pidx0 = $sidx * 3;
|
|
|
|
next unless $counters[ $pidx0 ]
|
|
|
|
|| $counters[ $pidx0 + 1 ]
|
|
|
|
|| $counters[ $pidx0 + 2 ];
|
|
|
|
|
|
|
|
my $sec_name = $sec_names[ $sidx ];
|
|
|
|
my @fg = map {
|
|
|
|
themed( 'git_' . $sec_name . '_' . $_ . '_fg' )
|
|
|
|
} @sec_parts;
|
|
|
|
my @subsecs = ();
|
|
|
|
foreach my $i ( 0..2 ) {
|
|
|
|
next unless $counters[ $pidx0 + $i ];
|
|
|
|
@subsecs = ( @subsecs ,
|
|
|
|
{fg=>$fg[ $i + 1 ]} ,
|
2020-10-20 13:56:28 +02:00
|
|
|
$pad . $part_syms[ $i ] ,
|
2020-10-20 12:12:23 +02:00
|
|
|
{fg=>$fg[ 0 ]} ,
|
|
|
|
$counters[ $pidx0 + $i ]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
push @out , {
|
|
|
|
bg => themed( 'git_' . $sec_name . '_bg' ) ,
|
|
|
|
content => [
|
|
|
|
{fg=>$fg[0]} ,
|
|
|
|
themed( 'git_' . $sec_name . '_symbol' ) ,
|
|
|
|
@subsecs
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return @out,
|
|
|
|
}
|
|
|
|
|
|
|
|
sub _render_git_stash
|
|
|
|
{
|
|
|
|
return () unless open( my $fh , 'git stash list 2>/dev/null|' );
|
|
|
|
my @lines = grep { $_ =~ /^stash/ } <$fh>;
|
|
|
|
close( $fh );
|
|
|
|
|
|
|
|
my $nl = scalar( @lines );
|
|
|
|
return () unless $nl;
|
|
|
|
return {
|
|
|
|
bg => themed('git_stash_bg') ,
|
|
|
|
content => [
|
|
|
|
{fg=>themed('git_stash_fg')} ,
|
|
|
|
themed('git_stash_symbol') . $nl
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
sub render_git
|
|
|
|
{
|
|
|
|
my @out = ( );
|
|
|
|
system( 'git rev-parse --is-inside-work-tree >/dev/null 2>&1' );
|
|
|
|
return @out if $? != 0;
|
|
|
|
@out = ( @out , _render_git_branch , _render_git_repstate );
|
|
|
|
@out = ( @out , _render_git_status ) if $CONFIG{git_show_status};
|
|
|
|
@out = ( @out , _render_git_stash ) if $CONFIG{git_show_stash};
|
|
|
|
return @out;
|
|
|
|
}
|
2020-10-20 14:40:20 +02:00
|
|
|
|
2020-10-21 09:45:17 +02:00
|
|
|
# }}}
|
|
|
|
# Python virtual environment ------------------------------------------------{{{
|
2020-10-20 14:40:20 +02:00
|
|
|
|
|
|
|
sub render_pyenv
|
|
|
|
{
|
|
|
|
return () unless $ENV{VIRTUAL_ENV} || $ENV{CONDA_DEFAULT_ENV};
|
|
|
|
my $env;
|
|
|
|
if ( $ENV{VIRTUAL_ENV} ) {
|
|
|
|
$env = $ENV{VIRTUAL_ENV};
|
|
|
|
} else {
|
|
|
|
$env = $ENV{CONDA_VIRTUAL_ENV};
|
|
|
|
}
|
|
|
|
$env =~ s!.*/!!;
|
|
|
|
return {
|
|
|
|
bg => themed 'pyenv_bg' ,
|
|
|
|
content => [
|
|
|
|
{fg=>themed 'pyenv_fg'} ,
|
|
|
|
'PY:' . $env
|
|
|
|
] ,
|
|
|
|
};
|
|
|
|
}
|
2020-10-21 09:45:17 +02:00
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
# }}}
|