Files
dots/common/.config/fish/functions/tuis.fish
T
2026-09-12 23:38:18 +02:00

8 lines
290 B
Fish

function tuis --description 'fzf select tui'
# one eval per selection — a single eval of the joined lines would run the
# first command with the other selections as its arguments
for cmd in (cat $HOME/.config/misc/tuis.txt | command fzf --multi)
eval $cmd
end
end