Use curses pinentry and add hidden sources for laptop
This commit is contained in:
parent
959db1b24f
commit
eb48146d6d
|
@ -1,3 +1,3 @@
|
|||
pinentry-program /usr/bin/pinentry-tty
|
||||
pinentry-program /usr/bin/pinentry-curses
|
||||
max-cache-ttl 60480000
|
||||
default-cache-ttl 60480000
|
||||
|
|
12
env/laptop/config.fish
vendored
Executable file
12
env/laptop/config.fish
vendored
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env fish
|
||||
|
||||
# TODO: completion
|
||||
function src-hidden-dir
|
||||
not scount $argv && echo "No directory specified" && exit 1
|
||||
set f $ENV_PATH/.hidden/fish.d/$argv[1]/config.fish
|
||||
echo "Checking $f..."
|
||||
test -f $f && source $f
|
||||
end
|
||||
|
||||
set hc $ENV_PATH/.hidden/config.fish
|
||||
test -f $hc && source $hc
|
Reference in a new issue