Add start script

This commit is contained in:
Fernando Schauenburg 2022-01-21 11:51:24 +01:00
parent 9f35c36ad3
commit 47ae86cac0
2 changed files with 5 additions and 0 deletions

View file

@ -11,4 +11,6 @@ path to the binaries.
`ifconfig` (kind of redundant because we can use `ip` in the WSL but keeping
it here anyway for convenience)
- `wsl`: use the WSL to WSL the WSL.
- `start`: start `tmux` as a sub-process of `ssh-agent` and attach to the
`main` session, creating it if not existent.

3
bin/start Normal file
View file

@ -0,0 +1,3 @@
#!/bin/sh
exec ssh-agent tmux new-session -A -t main "$@"