remap does not work with launch-prefix="gnome-terminal --command"
Launching with
<node name="node_name" pkg="pkg_name" type="pkg_type" output="screen">
<remap from="topic/general" to="topic/specific"/>
</node>
topic/general is mapped to topic/specific
but launching with
<node name="node_name" pkg="pkg_name" type="pkg_type" output="screen" launch-prefix="gnome-terminal --command">
<remap from="topic/general" to="topic/specific"/>
</node>
No remapping is done. How do I retain remappings when launching in new terminal?
Is it required for you to use
gnome-terminal
? It seems to be working usingxterm -e
instead, or eventerminator -x
but I'm not able to explain whygnome-terminal
doesn't work.From the gnome-terminal manpage the option
-x
is :Which is really similar to the option
-x
ofterminator
(manpage ):The
instead of your default shell or profile specified command
part might explain why it doesn't work withgnome-terminal
but I don't know any work-around for that.I originally used gnome-terminal because I'm working on Ubuntu but terminator -x works fine. Thanks.