aboutsummaryrefslogtreecommitdiff
path: root/install
blob: 92014b37ce75a1a144b3755e92e6fe7401f13804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

touch ~/.pdrc

if [ "`grep -c pd_start.pd ~/.pdrc`" == "0" ]
then
	path=`pwd`
	cmd="-open `pwd`/pd_start.pd"
	echo Adding $cmd to your ~/.pdrc file
	echo $cmd >> ~/.pdrc
	echo Adding $path to your pd path
	echo -path $path >> ~/.pdrc
fi