summaryrefslogtreecommitdiffstats
path: root/scripts/fish/conf.d/sshagent.fish
diff options
context:
space:
mode:
authorGeorg2021-12-02 22:29:26 +0100
committerGeorg2021-12-02 22:29:26 +0100
commit209f09dc5cde22b913217812fe3dca5c12241489 (patch)
tree51b816bf4a5c262d50c5e376ff8a110e0b1f3433 /scripts/fish/conf.d/sshagent.fish
parent6649ec5e45d75f5fcfab0f258f01a1f0696087d4 (diff)
downloadsystem-209f09dc5cde22b913217812fe3dca5c12241489.tar.gz
system-209f09dc5cde22b913217812fe3dca5c12241489.tar.bz2
system-209f09dc5cde22b913217812fe3dca5c12241489.zip
fish greeting with ssh-agent magic
Signed-off-by: Georg <georg@lysergic.dev>
Diffstat (limited to 'scripts/fish/conf.d/sshagent.fish')
-rw-r--r--scripts/fish/conf.d/sshagent.fish16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/fish/conf.d/sshagent.fish b/scripts/fish/conf.d/sshagent.fish
new file mode 100644
index 0000000..c60b360
--- /dev/null
+++ b/scripts/fish/conf.d/sshagent.fish
@@ -0,0 +1,16 @@
+# original from https://github.com/danhper/fish-ssh-agent/
+# adapted to include ssh-add check
+function sshagent
+ if test -z "$SSH_ENV"
+ set -xg SSH_ENV $HOME/.ssh/environment
+ end
+
+ if not __ssh_agent_is_started
+ __ssh_agent_start
+ end
+
+ if not __ssh_agent_is_key_added
+ echo "You need to authenticate."
+ ssh-add -q ~/.ssh/id_lysergic
+ end
+end