diff options
| author | navewindre <boneyaard@gmail.com> | 2024-10-25 16:32:47 +0200 |
|---|---|---|
| committer | navewindre <boneyaard@gmail.com> | 2024-10-25 16:32:47 +0200 |
| commit | ab7d0066027a590bb26646efe1cceb651305f252 (patch) | |
| tree | 631cff02fe052a27335df86d05b5c87081b0ae1d /config/openbox/run-autorun | |
| parent | c936b90ea9f1075a487a5048e30b3c55d56b9b54 (diff) | |
a
Diffstat (limited to 'config/openbox/run-autorun')
| -rwxr-xr-x | config/openbox/run-autorun | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/openbox/run-autorun b/config/openbox/run-autorun new file mode 100755 index 0000000..6d4e022 --- /dev/null +++ b/config/openbox/run-autorun @@ -0,0 +1,13 @@ +#!/bin/zsh + +directory="$HOME/.config/openbox/autorun" + +if [[ ! -d "$directory" ]]; then + exit 1 +fi + +for script in "$directory"/*; do + if [[ -x "$script" ]]; then + "$script" & + fi +done |
