#!/bin/bash

# This script just disables any fancy prompt-ness to reduce the width of the
# prompt during lecture.  It is meant to be sourced.

PROMPT_COMMAND=''
PS1='$ '
clear

