mirror of
https://github.com/jimeh/tmuxifier.git
synced 2026-02-19 09:56:39 +00:00
It's meant to be a wrapper for tmux, allowing additional arguments to be passed. Hence having the wrapper itself intercept -h as previously, or --help as removed in this commit prevents the wrapper from working properly.
6 lines
96 B
Bash
Executable File
6 lines
96 B
Bash
Executable File
#! /usr/bin/env bash
|
|
set -e
|
|
[ -n "$TMUXIFIER_DEBUG" ] && set -x
|
|
|
|
tmux $TMUXIFIER_TMUX_OPTS "$@"
|