Skip to content
/ config Public
forked from coderholic/config

A collection of personalised linux config files

Notifications You must be signed in to change notification settings

helber/config

 
 

Repository files navigation

# Linux/OS X configuration files for vim, bash, screen etc

## SSH-AGENT
https://unix.stackexchange.com/questions/339840/how-to-start-and-use-ssh-agent-as-systemd-service

```
# file: ~/.config/systemd/user/ssh-agent.service
[Unit]
Description=SSH key agent

[Service]
Type=simple
Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket
ExecStart=/usr/bin/ssh-agent -D -a $SSH_AUTH_SOCK

[Install]
WantedBy=default.target

# file: ~/.config/environment.d/ssh_auth_socket.conf
SSH_AUTH_SOCK="${XDG_RUNTIME_DIR}/ssh-agent.socket"
```



About

A collection of personalised linux config files

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vim Script 91.3%
  • Python 4.4%
  • Shell 4.3%