bash: Desactivar notificaciones OSC 777
Son buggy
This commit is contained in:
parent
da6219c026
commit
bc9cd2f1ea
1 changed files with 0 additions and 20 deletions
20
.bashrc
20
.bashrc
|
@ -50,23 +50,3 @@ if ! "$REMOTE"; then
|
|||
fi
|
||||
fi
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# Notifications through OSC 777
|
||||
# Based on https://github.com/t413/zsh-background-notify/blob/master/bgnotify.plugin.zsh
|
||||
|
||||
last_command () {
|
||||
history 1 | cut -c 8-
|
||||
}
|
||||
|
||||
notify () { ## args: (title, subtitle)
|
||||
echo -ne "\033]777;notify;[$(hostname)] $1;$2\a"
|
||||
}
|
||||
notify_command () {
|
||||
if test $? -eq 0; then
|
||||
notify "success" "$(last_command)"
|
||||
else
|
||||
notify "fail" "$(last_command)"
|
||||
fi
|
||||
}
|
||||
|
||||
PROMPT_COMMAND="notify_command;$PROMPT_COMMAND"
|
||||
|
|
Loading…
Reference in a new issue