#!/bin/bash

# omarchy:summary=Restart tmux if running with the latest configuration

if tmux has-session 2>/dev/null; then
  tmux source-file ~/.config/tmux/tmux.conf
fi
