#!/bin/sh
set -eu

if [ -n "${TMUX:-}" ]; then
  tmux send-keys -R \; clear-history
else
  clear
fi
