mirror of
https://github.com/gunchev/home_bin.git
synced 2025-11-20 12:15:46 +00:00
7 lines
130 B
Bash
7 lines
130 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
for i in ~/.config/autostart-scripts/*.sh; do
|
||
|
|
if [ "${0/*\//}" == "${i/*\//}" ]; then continue; fi
|
||
|
|
"$i"
|
||
|
|
done
|