#!/bin/bash

if [ -d "$HOME/.config/autostart" ]; then
	for a in "$HOME/.config/autostart"/*.desktop
	do
		if [ -r "$a" ]; then
			exo-open "$a"
		fi
	done
fi
