1
0
Fork 0

feat: add ssh allowed_signers

This commit is contained in:
cătălin 2024-02-20 13:25:20 +01:00
commit cd0a564d9a
No known key found for this signature in database
6 changed files with 17 additions and 2 deletions

View file

@ -39,3 +39,11 @@ function ffmerge
ffmpeg $input_videos -filter_complex (printf "[%s] " $input_videos | sed 's/ -i / concat=n=%d:v=1:a=1 [v] [a]/') -map "[v]" -map "[a]" $output
end
function fish_right_prompt
set -l k8s_color (set_color blue)
set -l k8s_context (kubectl config current-context)
echo -e -n -s $k8s_color "($k8s_context)"
end