diff options
| author | Marc Vertes <mvertes@free.fr> | 2025-01-26 15:36:29 +0100 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2025-01-26 15:36:29 +0100 |
| commit | 5408fd4eaac7c8ee8fcfcdf08e5d375378ce1a78 (patch) | |
| tree | 051253974c260fb7d427f7ed9434d0c5daf5fc49 | |
| parent | 15d6c8a4abf8ee8883f8c5d78f9a5e835bc670d1 (diff) | |
fixup
| -rw-r--r-- | .bashrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ # ~/.bashrc # If not running interactively, don't do anything -[[ $- != *i* ]] && return +# [[ $- != *i* ]] && return export PAGER=less export EDITOR=vim @@ -30,13 +30,13 @@ case $(uname -o) in alias ls='ls -GF' alias ll='ls -AlGFhv' alias ldd='otool -L' - trap "printf '\e]2;${PWD/~/\~}: ${BASH_COMMAND/update_terminal_cwd/bash}\a'" DEBUG + trap 'printf "\e]2;${PWD/~/\~}: ${BASH_COMMAND/update_terminal_cwd/bash}\a"' DEBUG ;; (GNU/Linux|Linux) export GNUTERM='sixelgd enhanced truecolor font "arial,9"' alias ls='ls --color=auto -v' alias ll='ls -AlFhv' - trap "printf '\e]2;${PWD/~/\~}: ${BASH_COMMAND/ps1/bash}\a'" DEBUG + [ -f /etc/arch-release ] || trap 'printf "\e]2;${PWD/~/\~}:\ ${BASH_COMMAND/ps1/bash}\a"' DEBUG ;; esac |
