File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 22function set_win_title(){
33 echo -ne " \033]0; ${PWD} \007"
44}
5+ # shellcheck disable=SC2034
56starship_precmd_user_func=" set_win_title"
67STARSHIP_CONFIG=" ${HOME} /.config/starship.toml"
78export STARSHIP_CONFIG
Original file line number Diff line number Diff line change @@ -463,8 +463,10 @@ restart_gpgagent(){
463463 kill -9 $( pgrep scdaemon) $( pgrep gpg-agent) > /dev/null 2>&1
464464 echo -e " \tgpg-agent: $( pgrep gpg-agent) | scdaemon: $( pgrep scdaemon) "
465465
466- export GPG_TTY=$( tty)
467- export SSH_AUTH_SOCK=$( gpgconf --list-dirs agent-ssh-socket)
466+ GPG_TTY=$( tty)
467+ export GPG_TTY
468+ SSH_AUTH_SOCK=$( gpgconf --list-dirs agent-ssh-socket)
469+ export SSH_AUTH_SOCK
468470 gpgconf --launch gpg-agent
469471 gpg-connect-agent updatestartuptty /bye > /dev/null
470472
@@ -549,5 +551,6 @@ cad_convert_rack_files_to_collada() {
549551
550552uv_venv () {
551553 uv venv
554+ # shellcheck source=/dev/null
552555 source .venv/bin/activate
553556}
You can’t perform that action at this time.
0 commit comments