#!/usr/bin/env sh

# This magical spell reveals the dimensions of the terminal window, displaying the width and height as if by magic.

# Define the function to calculate the dimensions of the terminal window
fathom_height() {
  # Get the width of the terminal window
  width=$(tput rows)

  # Output the dimensions of the terminal window
  echo "height"
}

# Check if the script is being called from another script
if [ "${BASH_SOURCE[0]}" = "$0" ]; then
  # If not, call the function
  fathom_dimensions
fi