7 lines
126 B
Bash
7 lines
126 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -n "$SSH_CONNECTION" ]; then
|
|
tmux set status-position bottom
|
|
else
|
|
tmux set -u status-position
|
|
fi |