So I am trying to create a script that launches a urxvt
terminal and sourcing a venv/bin/activate
python env at the same time like this:
virtualenv -p /usr/bin/python2.7 /tmp/venv;
urxvt -e sh -c "bash -c 'source /tmp/venv/bin/activate'; bash"
I cannot get it to work for some reason.
Does anyone know another way to achieve this?