#!/bin/bash

export PATH=$PATH:$HOME/.my/bin

#echo "invoking .xsession-local"

for file in ~/.bash_initshared; do
	if [ -x "$file" ]; then
		#echo "source $file"
		. "$file"
	fi
done
