[Fish] update

This commit is contained in:
2025-08-04 02:25:10 +02:00
parent fe3fd9f49a
commit ef8f839913
6 changed files with 73 additions and 38 deletions

View File

@@ -0,0 +1,3 @@
function askllama --description 'answer from llama'
~/projects/llama.cpp/build/bin/llama-run ~/projects/llama.cpp/models/llama3 $(string join '+' $argv[1..])
end

View File

@@ -0,0 +1,3 @@
function sshf --description 'fzf select for ssh hosts'
ssh $(grep Host -w .ssh/config | awk '{print $2}' | fzf)
end

View File

@@ -0,0 +1,3 @@
function tuis --description 'fzf select tui'
eval (string split "\n" (cat ".dotfiles/tuis.txt") | fzf)
end