← Zurück zu den Projekten
Spyglass
#spyglass
spyglass is an extensible TUI search tool written in Rust, inspired by fsel, Raycast and Vicinae
#Installation
[!NOTE] You may be confused as to why your applications don't show in the list.
To add application entries, see Configuring the apps# lens
#with Nix
Simply add the repo to your flake inputs...
inputs = {
spyglass = {
url = "github:indium114/spyglass";
inputs.nixpkgs.follows = "nixpkgs";
}
};
...and pass it into your environment.systemPackages...
environment.systemPackages = [
inputs.spyglass.packages.${pkgs.stdenv.hostPlatform.system}.spyglass
];
#with Cargo
Simply run the following command:
cargo install --git https://github.com/indium114/spyglass
[!NOTE] Ensure that
~/.cargo/binis in your $PATH
#Basic Navigation
Typeto search- Use
Up/Downto select results - Search a specific lens with
lensname#- e.g.
apps#for apps
- e.g.
- Press
?to see a list of available lenses, as well as the version of spyglass you have installed
#Documentation
For instructions on how to configure the default lenses, see the documentation home