-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.session.yml
38 lines (31 loc) · 1.32 KB
/
.session.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Set var "WDIR" to workdir
<% if @args[0] %>
<% WDIR=@args[0] %>
<% else %>
<% WDIR=ENV["PWD"] %>
<% end %>
name: <%= WDIR.split('/').last %>
root: <%= @args[0] %>
startup_window: deepdrive
windows:
- deepdrive:
layout: tiled
panes:
- print -S 'ros2 launch deepdrive_bringup robot.launch.xml'
- print -S 'ros2 run deepdrive_teleop teleop_keyboard'
- print -S 'ros2 topic list'
- print -S 'ros2 launch nav2_bringup navigation_launch.py use_sim_time:=False params_file:=src/deepdrive_nav2_bringup/params/nav2_params.yaml'
- listener:
layout: even-vertical
panes:
- print -S 'ros2 run demo_nodes_cpp listener'
# even-horizontal
# Panes are spread out evenly from left to right across the window.
# even-vertical
# Panes are spread evenly from top to bottom.
# main-horizontal
# A large (main) pane is shown at the top of the window and the remaining panes are spread from left to right in the leftover space at the bottom. Use the main-pane-height window option to specify the height of the top pane.
# main-vertical
# Similar to main-horizontal but the large pane is placed on the left and the others spread from top to bottom along the right. See the main-pane-width window option.
# tiled
# Panes are spread out as evenly as possible over the window in both rows and columns.