Looking for a good app launcher for Linux. Currently looking for something for Arch and I see there’s a lot of options liks rofi and wofi. What are your favourite app launchers and why?
Looking for a good app launcher for Linux. Currently looking for something for Arch and I see there’s a lot of options liks rofi and wofi. What are your favourite app launchers and why?
I like these self made scripts. Some ideas to improve this: a) instead ls, use find command if you want use its output as input in another program (will yield fullpath too), b) fzf has a preview functionality, which I like a lot to use when it comes to directories or script files. As for the run command, I’m not sure why you use xargs and what i3-msg is needed for. Here is an alternative way.
(Edit: I always forget that beehaw will convert my ampersand to
&
. Have this in mind if you read the below code.)bash -c 'cd "${HOME}/.local/bin"; path="$(find . -maxdepth 1 -type f -executable -printf "%f\n" | fzf --preview "cat {}")" && "${path}"'
below same command in a bit more readable standalone script:
#!/usr/bin/env bash cd "${HOME}/.local/bin" || exit 1 path="$( \ find . -maxdepth 1 -type f -executable -printf "%f\n" | \ fzf --preview "cat {}" \ )" && "${path}"
The biggest problem with fzf is, that scripts that need an argument are not covered here. One could either use the input string from fzf as arguments or like that, or an optional input after fzf selection.
Ah nice! Thanks for the suggestion. Yeah
--preview
is a great feature that is good to remember.And true, it’s better to use
find -executable
than ls. Although in my case I would use-type f -o -type l
since I want to include symlinks (often I will cd into my local bin folder andln -s $(which )
to add it to my launcher). I’m using ls since I only put executables in there and using relative file paths so that it’s nicer to look at. But cd or sed would work as wellYeah the xargs + i3-msg part is a bit clunky but I’m not sure what else to do, since the terminal window needs to close immediately, which prevents the application from running. I tried a few variations with nohup and launching in the background, but haven’t found another solution. But I’m sure there’s a way