mirror of
https://github.com/gunchev/home_bin.git
synced 2025-11-20 12:15:46 +00:00
6 lines
130 B
Bash
Executable file
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
|