term-dmenu
                                
                                 term-dmenu copied to clipboard
                                
                                    term-dmenu copied to clipboard
                            
                            
                            
                        Replace dmenu with a floating terminal and FZF! Comes with helper scripts for program/app launching, window switching, etc.
term-dmenu
A replacement for Rofi, dmenu, and other launchers that uses FZF and a plain-old terminal emulator.
I recommend altering these scripts to suit your preferences.
What's inside
The main script is term-dmenu and its dependency floating-terminal. term-dmenu
is a dmenu replacement that turns stdin into an interactive menu and sends output
back to stdout. In other words, if you don't use any of dmenu's CLI options, you can
probably just alias dmenu=term-dmenu and you'll be just fine.
Helper scripts work with term-dmenu. If you set the environment variable
$DMENU_PROGRAM to something else (e.g. dmenu or rofi -dmenu), the helper
scripts will use those programs instead.
- dmenu-runnercan run any executable in your- $PATH. Because of the large number of executables on most systems, recent entries are saved and prioritized to make searching easier.
- app-launcherlaunches desktop applications using- j4-dmenu-desktop
- window-switcherallows listing/filtering/selecting open windows in Sway or i3 (much like what Alt+TAB does on most desktop environments).
Dependencies
- FZF
- j4-dmenu-desktopfor- app-launcher
- window-switcherrequires Sway or i3 to be running
Configuration
If you don't want to use term-dmenu but would like to use some of the helper
scripts
Differences from similar implementations
Other projects attempting to replace dmenu/rofi with terminal emulators exist, most notably sway-launcher-desktop. I created my own project instead of contributing upstream because I had different goals:
- Modularity: split dmenu functionality into term-dmenu, and make helper scripts work with dmenu, rofi, and term-dmenu equally well.
- 100% POSIX shell compatibility; no bashisms. Running these scripts with dash(the Debian Almquist shell) should yield faster startup speed.
- app-launcheruses- j4-dmenu-desktopto find .desktop files, which is better than using shell/AWK expressions.
- floating-terminallaunches the terminal. If the environment variable- $FLOATING_TERMINALis unset, it runs the first of the following programs that is found in- $PATH:- havoc $@
- alacritty --class=launcher -e $@
- kitty --class=launcher -e $@
- konsole -e $@
- gnome-terminal -e $@
- termite -e $@
- st -c launcher -e $@
- xterm -e $@
 
Acknowledgements
dmenu-runner code is based on this
script
by FlyingWombat (Wayback
Machine,
archive.today), with inspiration from
dmenu_run_history.
Many bits of code were borrowed from the discussion in issue 1367 of Sway's GitHub issue tracker.