Skip to content

Commit c50f672

Browse files
committed
Add timeout to SSH agent in Bash config
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
1 parent 9778c6c commit c50f672

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.7.5] - 2021-11-22
8+
### Added
9+
- Timeout to SSH agent in [Bash Config](home/.bashrc)
10+
711
## [1.7.4] - 2021-11-22
812
### Added
913
- Proxy for Lokinet to [SSH Config](home/.ssh/config)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7.4
1+
1.7.5

home/.bashrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Tmux
22
if [[ -z "${TMUX}" ]]; then
33
if ! tmux has-session; then
4-
eval $(ssh-agent)
4+
eval $(ssh-agent -st 1h)
55
tmux new-session -n calculator bc -iq
66
else
77
tmux new-window

0 commit comments

Comments
 (0)