diff --git a/wal/bin/run-wal-hooks.sh b/wal/bin/run-wal-hooks.sh index 801dd5e..07761e6 100755 --- a/wal/bin/run-wal-hooks.sh +++ b/wal/bin/run-wal-hooks.sh @@ -3,6 +3,6 @@ # This script runs hooks found in $HOME/.config/wal/hooks. # It's meant to be passed to wal as follows: wal -i /path/to/img -o run-wal-hooks.sh -for f in $(find "$HOME/.config/wal/hooks/" -maxdepth 1 -type f | sort); do +for f in $(find "$HOME/.config/wal/hooks/" -maxdepth 1 -type f -follow | sort); do bash "$f" done