aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/aliases.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/aliases.zsh')
-rw-r--r--zsh/aliases.zsh11
1 files changed, 0 insertions, 11 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'