Changes
3 changed files (+13/-13)
-
-
@@ -13,6 +13,10 @@ abbr -a -- q 'git pull'abbr -a -- s 'git status' abbr -a --set-cursor -- t 'kioclient move % trash:/' # Actually ctrl-backspace # fish_key_reader detects it as ctrl-h bind ctrl-h backward-kill-word # The best worst editor ever set -gx EDITOR micro
-
@@ -23,12 +27,9 @@ set -gx CARGO_HOME ~/.local/share/cargo# https://docs.julialang.org/en/v1/manual/environment-variables/#JULIA_DEPOT_PATH set -gx JULIA_DEPOT_PATH ~/.local/share/julia: # Actually ctrl-backspace # fish_key_reader detects it as ctrl-h bind ctrl-h backward-kill-word # Detect if running in Termux if test -n "$TERMUX_VERSION" # Running in Termux set -gx SSH_ASKPASS "fish -c termux-ssh-askpass" # SSH_ASKPASS requires an executable set -gx SSH_ASKPASS ~/.config/fish/scripts/termux-ssh-askpass.fish set -gx SSH_ASKPASS_REQUIRE force end
-
-
fish/functions/termux-ssh-askpass.fish (deleted)
-
@@ -1,7 +0,0 @@function termux-ssh-askpass -d "Fetch SSH key password from Android keystore" # https://microsounds.github.io/notes/termux-ssh-fingerprint.htm # Fingerprint unlock termux-fingerprint # Sign nonce value echo nonce | termux-keystore sign default SHA256withRSA | base64 -w 0 end
-
-
-
@@ -0,0 +1,6 @@#!/usr/bin/env fish # https://microsounds.github.io/notes/termux-ssh-fingerprint.htm # Fingerprint unlock then sign nonce value # No ed25519 support sad termux-fingerprint | termux-keystore sign default SHA256withRSA | base64 -w 0
-