Skip to content

Commit bf1a896

Browse files
committed
fix unwrapped string for rofi
1 parent e3db4ff commit bf1a896

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qbpm/operations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def menu_command(
134134
if len(menu.split(" ")) == 1:
135135
program = Path(menu).name
136136
if program == "rofi":
137-
command = f"{menu} -dmenu -no-custom {prompt} -mesg {arg_string}"
137+
command = f"{menu} -dmenu -no-custom {prompt} -mesg '{arg_string}'"
138138
elif program == "wofi":
139139
command = f"{menu} --dmenu {prompt}"
140140
elif program.startswith("dmenu"):

0 commit comments

Comments
 (0)