Merge branch 'crash' into master
Heh I don't have a half bad memory!
This commit is contained in:
commit
35d4c10919
BIN
config/i3/pitch.png
Normal file
BIN
config/i3/pitch.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 67 B |
|
@ -416,7 +416,11 @@ machines_n_help() { machines_network_help "$@"; }
|
||||||
function machines_update-all {
|
function machines_update-all {
|
||||||
machines_machine_list | while read -r machine; do
|
machines_machine_list | while read -r machine; do
|
||||||
echo "Updating $machine..."
|
echo "Updating $machine..."
|
||||||
ssh "$machine" 'cd .dotfiles && git pull; machines update' &
|
if [ $machine = $(cat "$MACHINES_CONFIG/this.name") ]; then
|
||||||
|
machines_update
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
ssh -n "$machine" 'cd .dotfiles; git pull; ./config/scripts/machines update'
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -106,10 +106,14 @@ prependpath "$HOME/.config/scripts"
|
||||||
prependpath "$HOME/.termux/bin"
|
prependpath "$HOME/.termux/bin"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# For superseding commands with better ones if they are present
|
||||||
|
|
||||||
if grep -q enable-ssh-support "$GNUPGHOME/gpg-agent.conf" 2> /dev/null
|
# SSH Agent
|
||||||
|
|
||||||
|
# If GPG agent is configured for SSH
|
||||||
|
if grep -q ^enable-ssh-support$ $GNUPGHOME/gpg-agent.conf 2> /dev/null
|
||||||
then
|
then
|
||||||
# Use GPG as SSH agent
|
# Load GPG agent
|
||||||
unset SSH_AGENT_PID
|
unset SSH_AGENT_PID
|
||||||
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
|
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
|
||||||
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
|
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
|
||||||
|
|
Loading…
Reference in a new issue