From 065b4206259b33d2e347d8624b0d0d7348f861d5 Mon Sep 17 00:00:00 2001 From: PandaCoderPL Date: Thu, 11 Nov 2021 01:16:41 +0000 Subject: [PATCH] Add code for starting ssh-agent to Bash config Signed-off-by: PandaCoderPL --- CHANGELOG.md | 4 ++++ VERSION | 2 +- home/.bashrc | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e11a2d8..792fca3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.5.2] - 2021-11-11 +### Added +- Code for starting ssh-agent to [Bash Config](home/.bashrc) + ## [1.5.1] - 2021-11-11 ### Added - ProxyCommand to [SSH Config](home/.ssh/config) diff --git a/VERSION b/VERSION index 26ca594..4cda8f1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.1 +1.5.2 diff --git a/home/.bashrc b/home/.bashrc index 6c63e7d..5051870 100644 --- a/home/.bashrc +++ b/home/.bashrc @@ -1,6 +1,7 @@ # Tmux if [[ -z "${TMUX}" ]]; then if ! tmux has-session; then + eval $(ssh-agent) tmux new-session else tmux new-window