mirror of
https://github.com/theniceboy/.config.git
synced 2026-05-11 17:36:05 +08:00
7 lines
163 B
Bash
Executable file
7 lines
163 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
agent_bin="$HOME/.config/agent-tracker/bin/agent"
|
|
[[ -x "$agent_bin" ]] || exit 0
|
|
|
|
exec "$agent_bin" tmux right-status "$@"
|