Fix bash formatting
This commit is contained in:
parent
846097a632
commit
d26f8971d0
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
## Configure static SSH Agent
|
## Configure static SSH Agent
|
||||||
export SSH_AUTH_SOCK="$HOME/.spool/ssh-agent.sock"
|
export SSH_AUTH_SOCK="$HOME/.spool/ssh-agent.sock"
|
||||||
if [ -e $SSH_AUTH_SOCK ]; then
|
if [ -e "$SSH_AUTH_SOCK" ]; then
|
||||||
rm $SSH_AUTH_SOCK
|
rm "$SSH_AUTH_SOCK"
|
||||||
fi
|
fi
|
||||||
if [ -e "$HOME/.spool/ssh-agent.env" ]; then
|
if [ -e "$HOME/.spool/ssh-agent.env" ]; then
|
||||||
rm "$HOME/.spool/ssh-agent.env"
|
rm "$HOME/.spool/ssh-agent.env"
|
||||||
|
@ -11,7 +11,7 @@ fi
|
||||||
if [[ "$(pgrep ssh-agent)" ]]; then
|
if [[ "$(pgrep ssh-agent)" ]]; then
|
||||||
pkill ssh-agent
|
pkill ssh-agent
|
||||||
fi
|
fi
|
||||||
. "$HOME/scripts/ssh-agent.sh"
|
. ${HOME}/scripts/ssh-agent.sh
|
||||||
|
|
||||||
# Static/predictable Sway socket
|
# Static/predictable Sway socket
|
||||||
export SWAYSOCK="$HOME/.spool/sway-ipc.sock"
|
export SWAYSOCK="$HOME/.spool/sway-ipc.sock"
|
||||||
|
|
Loading…
Reference in New Issue