Unable to replace dmenu with rofi combi mode [closed]
Asked Answered
W

1

5

I'm unable to add a key binding for the following command in the i3 config file : rofi -combi-modi window,drun -show combi.

I'm trying to add the following entry to the .config/i3/config file : bindsym $mod+t exec rofi -combi-modi window,drun -show combi but this is not working.

I'm wondering why this is not working for me ?

However using this binding : bindsym $mod+t exec rofi -modi drun -show drun does the expected job.

Wahlstrom answered 15/12, 2017 at 16:46 Comment(0)
A
11

i3 interprets commas and colons specially so if you are using those characters you need to quote your exec command.

$mod+t exec "rofi -combi-modi window,drun -show combi"

Reference: https://i3wm.org/docs/userguide.html#exec and https://i3wm.org/docs/userguide.html#command_chaining

Alpers answered 15/2, 2018 at 3:37 Comment(1)
that was helpful, thanks a lotWahlstrom

© 2022 - 2024 — McMap. All rights reserved.