CLI app launcher for fuzzy finders
go install github.com/htsee/fzlaunchIf you use Nix, you can install the package using this repo's flake.nix
list: generate a list of applications
run [app]: run an application
preview [app]: provide information about an application
# bash, zsh
fzlaunch list | fzf --preview "fzlaunch preview {}" | xargs -d "\n" fzlaunch run# nushell
fzlaunch list | fzf --preview "fzlaunch preview {}" | fzlaunch run $inPut this in $XDG_CONFIG_HOME/television/cable/fzlaunch.toml
[metadata]
name = "fzlaunch"
description = "App launcher"
requirement = ["fzlaunch"]
[source]
command = "fzlaunch list"
[preview]
command = "fzlaunch preview '{}'"
[keybindings]
enter = "actions:open"
[actions.open]
description = "Launch application"
command = "fzlaunch run {}"
mode = "execute"then run tv fzlaunch
git clone github.com/htsee/fzlaunch
# with go
go build
# with nix
nix build