diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-06 02:57:14 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2017-06-01 18:37:35 +0200 |
commit | b6538e6139f0158099bd407bb737ed7b9af26e67 (patch) | |
tree | 75abfba977383f5539c048644148ed0810711983 /zsh | |
parent | 9188fba3b14c331744b8593138f9496adea4ea60 (diff) | |
download | dotfiles-b6538e6139f0158099bd407bb737ed7b9af26e67.tar.xz |
Move preexec to theme
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/aliases.zsh | 11 | ||||
-rw-r--r-- | zsh/themes/prompt_kyrias_setup | 11 |
2 files changed, 10 insertions, 12 deletions
diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index 85b7a35..4b9ad55 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -47,17 +47,6 @@ sp() { printf '%s' "$@"; printf '\n'; } have() { command -v "$1" >&/dev/null; } -# Print basic prompt to the window title -function precmd { - print -Pn "\e];%n %~\a" -} - -# Print the current running command's name to the window title -function preexec { - local cmd=${1[(wr)^(*=*|sudo|exec|ssh|-*)]} - print -Pn "\e];$cmd:q\a" -} - # service management if have systemctl && [[ -d /run/systemd/system ]]; then alias ssctl='sudo systemctl' diff --git a/zsh/themes/prompt_kyrias_setup b/zsh/themes/prompt_kyrias_setup index 68dbfd8..7082677 100644 --- a/zsh/themes/prompt_kyrias_setup +++ b/zsh/themes/prompt_kyrias_setup @@ -19,13 +19,22 @@ venv_prompt() { } prompt_kyrias_precmd() { - print -Pn "\e];%n %~\a" + # Print line to the window title + print -P "\e];%n %~\a" +} + +prompt_kyrias_preexec() { + # Print currently running command name to the window title + print -P "\e];$1:q\a" } prompt_kyrias_setup() { setopt prompt_subst autoload -U colors && colors + add-zsh-hook precmd prompt_kyrias_precmd + add-zsh-hook preexec prompt_kyrias_preexec + PROMPT='%{$bg[$(prompt_user_color)]$fg[white] %m %k%f$bg[white]$fg[$(prompt_user_color)] %~ %f%k$(venv_prompt) $bg[blue]%} λ %k %}' } |