9 lines
281 B
Bash
Executable File
9 lines
281 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# plugin.tmux - Main entry point for tmux-logger plugin
|
|
# This file is executed by tmux plugin managers like TPM
|
|
|
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
# Source and execute the main plugin file
|
|
source "$CURRENT_DIR/tmux-logger.tmux" |