home_bin/.config/autostart-scripts/run_all.sh
Doncho Gunchev c001068b94 Added ~/.config/autostart-scripts/
Run ~/.config/autostart-scripts/run_all.sh to start them all.
2016-10-23 21:44:55 +03:00

6 lines
130 B
Bash
Executable file

#!/bin/bash
for i in ~/.config/autostart-scripts/*.sh; do
if [ "${0/*\//}" == "${i/*\//}" ]; then continue; fi
"$i"
done