Improved rc self update and added sys update watch
This commit is contained in:
parent
c9290261eb
commit
68984ff8c1
2 changed files with 49 additions and 225 deletions
56
functions
56
functions
|
@ -143,19 +143,22 @@ space_sh_git_prompt () {
|
|||
################################################################################
|
||||
|
||||
prompt_msg () {
|
||||
case $(cat /dev/shm/prompt_msg) in
|
||||
line=$(tail -1 /dev/shm/prompt_msg)
|
||||
case $line in
|
||||
update_rc)
|
||||
msg="Update ready for rc";;
|
||||
msg="Update ready for rc. Run uprc to proceed";;
|
||||
git_unpushed)
|
||||
msg="You have unpushed business in $HOME/rc";;
|
||||
git_network_unreachable)
|
||||
msg="Can\'t reach rc git repo";;
|
||||
update_sys)
|
||||
msg="Update ready for system";;
|
||||
msg="Can't reach rc git repo";;
|
||||
update_sys*)
|
||||
msg="Update ready for system. $(echo $line | grep -o '[0-9]*' | head -n 1) Packages";;
|
||||
*)
|
||||
msg="";;
|
||||
esac
|
||||
|
||||
# Remove last message from stack before it drives us mad
|
||||
sed -i '$ d' /dev/shm/prompt_msg
|
||||
echo $msg
|
||||
}
|
||||
|
||||
|
@ -178,8 +181,11 @@ prompt_create () {
|
|||
# Current working directory, use ~ when needed
|
||||
PROMPT+="%{$fg[yellow]%}"'%~'
|
||||
|
||||
# Display current message
|
||||
PROMPT+="%{$fg[red]%} "'$(prompt_msg)'
|
||||
|
||||
# Change the background for the whole line and line feed
|
||||
PROMPT+="%{$fg_bold[green]%} "'$(prompt_msg)'"%E"$'\n'
|
||||
PROMPT+="%{$fg_bold[green]%}%E"$'\n'
|
||||
|
||||
# Prompt characters for virtualenv, git and zsh
|
||||
PROMPT+='$(_prompt_chars)'" %{$reset_color%}"
|
||||
|
@ -206,8 +212,8 @@ prompt_create () {
|
|||
################################################################################
|
||||
# Mise à jour automatique à partir du repo distant #
|
||||
################################################################################
|
||||
#
|
||||
update_config () {
|
||||
|
||||
check_rc_update () {
|
||||
# Get rc dir path
|
||||
RC_PATH=$(dirname "$(readlink -f ${(%):-%x})")
|
||||
|
||||
|
@ -219,22 +225,42 @@ update_config () {
|
|||
#
|
||||
# Timeout returns 124 on timeout
|
||||
if [ "$?" -ge "124" ]; then
|
||||
echo 'git_network_unreachable' > /dev/shm/prompt_msg
|
||||
echo 'git_network_unreachable' >> /dev/shm/prompt_msg
|
||||
fi
|
||||
|
||||
# Check if the repo is clean
|
||||
git_st=$(command git status --porcelain -b 2> /dev/null)
|
||||
if $(echo "$git_st" | grep '^## .*ahead' &> /dev/null); then
|
||||
echo 'git_unpushed' > /dev/shm/prompt_msg
|
||||
echo 'git_unpushed' >> /dev/shm/prompt_msg
|
||||
elif $(echo "$git_st" | grep '^## .*behind' &> /dev/null); then
|
||||
echo 'update_rc' > /dev/shm/prompt_msg
|
||||
echo 'update_rc' >> /dev/shm/prompt_msg
|
||||
fi
|
||||
|
||||
cd $CUR_DIR
|
||||
}
|
||||
|
||||
# Do the update
|
||||
uprc () {
|
||||
RC_PATH=$(dirname "$(readlink -f ${(%):-%x})")
|
||||
cd $RC_PATH
|
||||
git pull --rebase --stat origin master
|
||||
$RC_PATH/install.sh
|
||||
cd - &> /dev/null
|
||||
source $HOME/.zshrc
|
||||
}
|
||||
|
||||
#git pull --rebase --stat origin master
|
||||
#$RC_PATH/install.sh
|
||||
#cd $CUR_DIR
|
||||
#source $HOME/.zshrc
|
||||
################################################################################
|
||||
# Check for system updates #
|
||||
################################################################################
|
||||
|
||||
check_sys_update () {
|
||||
case $(lsb_release -a | awk -F ':\t' '/Distributor ID/{print $2}') in
|
||||
Arch)
|
||||
nb_maj=$(checkupdates | wc -l);;
|
||||
Debian|Ubuntu)
|
||||
nb_maj=$(aptitude search '~U' | wc -l);;
|
||||
esac
|
||||
if [ $nb_maj -gt 0 ]; then
|
||||
echo "update_sys $nb_maj" >> /dev/shm/prompt_msg
|
||||
fi
|
||||
}
|
||||
|
|
218
zshrc
218
zshrc
|
@ -16,36 +16,17 @@ export PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin:~/bin
|
|||
# Get rc dir path
|
||||
RC_PATH=$(dirname "$(readlink -f ${(%):-%x})")
|
||||
|
||||
# Mise à jour automatique à partir du repo distant
|
||||
|
||||
CUR_DIR=`pwd`
|
||||
cd $RC_PATH
|
||||
# Import utility functions
|
||||
. $RC_PATH/functions
|
||||
|
||||
# In case the network is down, don't lock the terminal
|
||||
timeout 3 git fetch > /dev/null 2>&1
|
||||
#
|
||||
# Timeout returns 124 on timeout
|
||||
if [ "$?" -ge "124" ]; then
|
||||
echo "Unable to reach $(git remote -v | grep "fetch")"
|
||||
fi
|
||||
|
||||
# Check if the repo is clean
|
||||
git_st=$(command git status --porcelain -b 2> /dev/null)
|
||||
if $(echo "$git_st" | grep '^## .*ahead' &> /dev/null); then
|
||||
echo "You have unpushed business in $HOME/rc"
|
||||
elif $(echo "$git_st" | grep '^## .*behind' &> /dev/null); then
|
||||
echo "Type Y to update .zshrc: \c"
|
||||
read line
|
||||
if [ "$line" = Y ] || [ "$line" = y ]; then
|
||||
git pull --rebase --stat origin master
|
||||
$RC_PATH/install.sh
|
||||
cd $CUR_DIR
|
||||
source $HOME/.zshrc
|
||||
return
|
||||
fi
|
||||
fi
|
||||
# Check for rc updates
|
||||
(check_rc_update&) 2> /dev/null
|
||||
|
||||
cd $CUR_DIR
|
||||
|
||||
# Check for system updates
|
||||
(check_sys_update&) 2> /dev/null
|
||||
|
||||
|
||||
# Configuration for virtualenv
|
||||
|
@ -165,145 +146,6 @@ EXPORTTIME=0
|
|||
COMPLETION_WAITING_DOTS="true"
|
||||
|
||||
|
||||
################################################################################
|
||||
# Utility functions for the prompt #
|
||||
################################################################################
|
||||
|
||||
|
||||
# Background changes depending on solarized theme
|
||||
case ${SOLARIZED_THEME:-dark} in
|
||||
light) local bkg=white;;
|
||||
*) local bkg=black;;
|
||||
esac
|
||||
|
||||
local ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[green]%}[%{$fg_bold[blue]%}"
|
||||
local ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg_bold[green]%}]"
|
||||
local ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_no_bold[green]%}✓"
|
||||
local ZSH_THEME_GIT_PROMPT_AHEAD="%{$fg_no_bold[cyan]%}▴"
|
||||
local ZSH_THEME_GIT_PROMPT_BEHIND="%{$fg_no_bold[magenta]%}▾"
|
||||
local ZSH_THEME_GIT_PROMPT_STAGED="%{$fg_no_bold[green]%}●"
|
||||
local ZSH_THEME_GIT_PROMPT_UNSTAGED="%{$fg_no_bold[yellow]%}●"
|
||||
local ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg_no_bold[red]%}●"
|
||||
|
||||
local ZSH_THEME_VIRTUALENV_PREFIX=" %{$fg_bold[green]%}(%{%b$fg[green]%}"
|
||||
local ZSH_THEME_VIRTUALENV_SUFFIX="%{$reset_color$fg_bold[green]%})%{$reset_color%}"
|
||||
|
||||
# Depending if root or not, displays the right prompt char
|
||||
# and changes the color of the username
|
||||
if [[ $EUID -eq 0 ]]; then
|
||||
local _USERNAME="%{$fg_bold[red]%}%n"
|
||||
local _LIBERTY="%{$fg_no_bold[red]%}#"
|
||||
else
|
||||
local _USERNAME="%{$fg_bold[green]%}%n"
|
||||
local _LIBERTY="%{$fg_no_bold[green]%}$"
|
||||
fi
|
||||
_LIBERTY="$_LIBERTY%{$reset_color%}"
|
||||
|
||||
|
||||
function virtualenv_prompt_info(){
|
||||
[[ -n ${VIRTUAL_ENV} ]] || return
|
||||
echo "${ZSH_THEME_VIRTUALENV_PREFIX:=[}${VIRTUAL_ENV:t}${ZSH_THEME_VIRTUALENV_SUFFIX:=]}"
|
||||
}
|
||||
|
||||
# disables prompt mangling in virtual_env/bin/activate
|
||||
export VIRTUAL_ENV_DISABLE_PROMPT=1
|
||||
|
||||
function _prompt_chars() {
|
||||
if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then
|
||||
local _GIT_CHAR="%{$fg_no_bold[blue]%}±%{$reset_color%}"
|
||||
else
|
||||
local _GIT_CHAR=' '
|
||||
fi
|
||||
|
||||
local _VENV_PROMPT="%{%}$(virtualenv_prompt_info)"
|
||||
|
||||
echo "$_GIT_CHAR$_VENV_PROMPT $_LIBERTY"
|
||||
}
|
||||
|
||||
function charge_batterie {
|
||||
local BATTERY=/sys/class/power_supply/BAT0
|
||||
local REM_CAP=`cat $BATTERY/charge_now`
|
||||
local FULL_CAP=`cat $BATTERY/charge_full`
|
||||
local BATSTATE=`cat $BATTERY/status`
|
||||
local CHARGE=$(( $REM_CAP * 100 / $FULL_CAP ))
|
||||
local Batterie=""
|
||||
case $BATSTATE in
|
||||
'Full')
|
||||
Batterie="~";;
|
||||
'Charging')
|
||||
Batterie="+";;
|
||||
'Discharging')
|
||||
Batterie="-";;
|
||||
esac
|
||||
# Maximum à 100%
|
||||
if [ $CHARGE -gt "99" ]
|
||||
then
|
||||
CHARGE=100
|
||||
fi
|
||||
local Couleur="magenta"
|
||||
if [ $CHARGE -gt "15" ]
|
||||
then
|
||||
Couleur="yellow"
|
||||
fi
|
||||
if [ $CHARGE -gt "30" ]
|
||||
then
|
||||
Couleur="green"
|
||||
fi
|
||||
|
||||
echo %{$fg[${Couleur}]%B%}${Batterie}%{%b$fg[${Couleur_batt}]%}$CHARGE%%%{$reset_color%}
|
||||
}
|
||||
|
||||
space_sh_git_branch () {
|
||||
local ref=$(command git symbolic-ref HEAD 2> /dev/null) || \
|
||||
ref=$(command git rev-parse --short HEAD 2> /dev/null) || return
|
||||
echo "${ref#refs/heads/}"
|
||||
}
|
||||
|
||||
space_sh_git_status () {
|
||||
_INDEX=$(command git status --porcelain -b 2> /dev/null)
|
||||
local _STATUS=""
|
||||
if $(echo "$_INDEX" | grep '^[AMRD]. ' &> /dev/null); then
|
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_STAGED"
|
||||
fi
|
||||
if $(echo "$_INDEX" | grep '^.[MTD] ' &> /dev/null); then
|
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_UNSTAGED"
|
||||
fi
|
||||
if $(echo "$_INDEX" | command grep -E '^\?\? ' &> /dev/null); then
|
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_UNTRACKED"
|
||||
fi
|
||||
if $(echo "$_INDEX" | grep '^UU ' &> /dev/null); then
|
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_UNMERGED"
|
||||
fi
|
||||
if $(command git rev-parse --verify refs/stash >/dev/null 2>&1); then
|
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_STASHED"
|
||||
fi
|
||||
if $(echo "$_INDEX" | grep '^## .*ahead' &> /dev/null); then
|
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_AHEAD"
|
||||
elif $(echo "$_INDEX" | grep '^## .*behind' &> /dev/null); then
|
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_BEHIND"
|
||||
fi
|
||||
if $(echo "$_INDEX" | grep '^## .*diverged' &> /dev/null); then
|
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_DIVERGED"
|
||||
fi
|
||||
|
||||
echo $_STATUS
|
||||
}
|
||||
|
||||
space_sh_git_prompt () {
|
||||
local _branch=$(space_sh_git_branch)
|
||||
local _result=""
|
||||
if [[ "${_branch}x" != "x" ]]; then
|
||||
local _status=$(space_sh_git_status)
|
||||
_result="$ZSH_THEME_GIT_PROMPT_PREFIX$_branch"
|
||||
if [[ "${_status}x" != "x" ]]; then
|
||||
_result="$_result $_status"
|
||||
fi
|
||||
_result="$_result$ZSH_THEME_GIT_PROMPT_SUFFIX"
|
||||
fi
|
||||
echo $_result
|
||||
}
|
||||
|
||||
|
||||
# Host coloring, specific to Rezometz
|
||||
local couleur_hote=""
|
||||
case $HOST in
|
||||
|
@ -324,51 +166,7 @@ esac
|
|||
# Pour recalculer les variables du prompt
|
||||
# Il faut que le signe $ soit échappé ou entre guillemets simples
|
||||
setopt promptsubst
|
||||
|
||||
################################################################################
|
||||
# Prompt display #
|
||||
################################################################################
|
||||
|
||||
# Carriage return to give the prompt some air
|
||||
PROMPT="%{$reset_color%}
|
||||
"
|
||||
|
||||
# Username, red when logged as root
|
||||
PROMPT+='$_USERNAME'
|
||||
|
||||
# @ symbol
|
||||
PROMPT+="%{$fg_bold[blue]%}@"
|
||||
|
||||
# Hostname, colors defined just above
|
||||
PROMPT+="%{$fg_bold[$couleur_hote]%}"'%m'
|
||||
|
||||
# White space to separate host from pwd
|
||||
PROMPT+=" %{$reset_color%}"
|
||||
|
||||
# Current working directory, use ~ when needed
|
||||
PROMPT+="%{$fg[yellow]%}"'%~'
|
||||
|
||||
# Change the background for the whole line and line feed
|
||||
PROMPT+="%{$fg_bold[green]%} %E
|
||||
"
|
||||
|
||||
# Prompt characters for virtualenv, git and zsh
|
||||
PROMPT+='$(_prompt_chars)'" %{$reset_color%}"
|
||||
|
||||
# Right prompt with current repo informations
|
||||
RPROMPT='$(space_sh_git_prompt)'"%E%{$reset_color%}"
|
||||
|
||||
#PROMPT="$Heure $Utilisateur@$Machine %{$fg_no_bold[yellow]%}%~
|
||||
#%{$reset_color%}%# "
|
||||
#RPROMPT="\$(charge_batterie) %(!,%B[%?]%b,[%?])"
|
||||
|
||||
#RPROMPT="${vcs_info_msg_0_} \$(charge_batterie) %(!,%B[%?]%b,[%?])"
|
||||
|
||||
#RPROMPT=" %(!,%B[%?]%b,[%?])"
|
||||
|
||||
# %{ %} pas d'affichage, à utiliser pour ne pas fausser le calcul de RPROMPT
|
||||
# $fg[color], $fg_(no_)bold[color], $reset_color
|
||||
# black red green yellow blue magenta cyan white
|
||||
prompt_create
|
||||
|
||||
# Raccourcis claviers à la VIM
|
||||
bindkey -v
|
||||
|
|
Loading…
Reference in a new issue