-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
I updated this repo and I noticed that qutebrowser-profile recently started serving me profile through dmenu, not rofi.
I played with the config and finally digged into the code and found this line that suggest that the search for rofi was overriden by following test for dmenu.
I tried to change the code to the snippet bellow:
rofi = shutil.which("rofi")
if rofi:
dmenu = f"{rofi} -dmenu"
else:
dmenu = shutil.which("dmenu")And it works as intended.
Is that an oversight or did you intended this to work as that.
Metadata
Metadata
Assignees
Labels
No labels