Findex – Fast And Easy Tool to Search Apps in Linux

User Avatar
πŸ‘€ admin
πŸ”΄ Admin
✍️ The most important thing in the world is to not be alone.
⏳ Last active: 15 Apr 2025 at 16:01
πŸ“… Created: 26 Jul 2022 at 11:42
πŸ‘€ Viewed: 38 times
βœ‰οΈ Send Email

Looking for an alternative app launching tool for your Linux? Findex is one with highly customizable interface and fast performance.

The app runs silently in the background. Once you hit the shortcut key, a search box pop-up in screen center allows to quickly search and open desired applications.

Image

Findex search apps

The tool is super fast as it focuses on performance. It supports fuzzy searching and allows to configure the following things:

  • Search window width.

  • Minimize and maximize window height.

  • Highlight color for match content.

  • Icon size, result size, and shortcut key

How to Get Findex:

The current 0.6.0 release does not work on Wayland session, though it’s said to bring it back in later version. Which means so far, Ubuntu and Fedora need to switch to β€˜Ubuntu on Xorgβ€˜ or β€˜Gnome on Xorgβ€˜ from the login screen to be able to use the tool.

  1. Firstly, download the tarball from the github release page:

Download Findex (tar.gz)

  1. Then extract it in file manager. Right-click on generated folder and select β€˜Open in Terminal’ to open that folder as working directory in terminal.

Image

  1. Finally, run command in terminal to start it:
./findex

Image

Run it first time to verify if it works!

To verify if it works, just press Shift + Space on keyboard. The search box should prompt up allows to type searching your applications.

  1. To make Findex runs automatically at startup, run the commands below one by one in the same terminal window:
  • Move the executable file to system path via command:sudo mv findex /usr/bin

  • Move the services file into systemd folder:sudo mv findex.path findex.service /etc/systemd/user/

  • Finally, enable the services:systemctl --user enable findex.servicesystemctl --user enable findex-restarter.path

Image

Copy to PATH, and make it auto-start

  1. To configure the keyboard shortcut and search appearance, open terminal and run command:
gedit ~/.config/findex/settings.toml

Replace gedit with your system text editor. After saving changes, you need to restart the service by running command: ```

systemctl --user restart findex.service

Image

Uninstall:

To disable the service, use command:

systemctl --user disable findex.service
systemctl --user disable findex-restarter.path
Then remove the executable file as well as service files:
sudo rm /usr/bin/findex /etc/systemd/user/findex*
If you want to comment: Login or Register