Skip to content
Snippets Groups Projects
Commit 45e45b4c authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Initial commit

parent 8d722fa4
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
SHELL := /bin/bash
SESSION_NAME := km3mon
default: start
start:
@echo Creating tmux session
@tmux new-session -d -s ${SESSION_NAME} \
|| (echo Please run \"make stop\" to close the current session.; exit 1)
@tmux rename-window -t ${SESSION_NAME}:1 ligier
@tmux send-keys -t km3mon:ligier.1 "JLigier -d2 -P 5553" Enter
stop:
tmux kill-session -t ${SESSION_NAME}
.PHONY: start stop
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment