#!/bin/bash

PATH="/usr/share/drp:$PATH"
export PATH
drpwindow &
pid=$!
echo "started DRP window with process id $pid"
bash --rcfile <(echo "PS1='drp> '") -i
kill -QUIT $pid

