12 lines
227 B
Bash
Executable file
12 lines
227 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
## Wizard Kit: HW Diagnostics Launcher
|
|
# TODO: Replace relative paths with absolute
|
|
|
|
source ./launch-in-tmux
|
|
|
|
SESSION_NAME="hw-diags"
|
|
WINDOW_NAME="Hardware Diagnostics"
|
|
TMUX_CMD="hw-diags.py"
|
|
|
|
launch_in_tmux "$@"
|