Add beginning of wal setup
This commit is contained in:
parent
e8506c71a0
commit
74c769c27b
3
feh/.config/wal/hooks/00-feh.sh
Executable file
3
feh/.config/wal/hooks/00-feh.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
feh --bg-fill "$(cat $HOME/.cache/wal/wal)"
|
8
wal/bin/run-wal-hooks.sh
Executable file
8
wal/bin/run-wal-hooks.sh
Executable file
@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# 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
|
||||
bash "$f"
|
||||
done
|
Loading…
Reference in New Issue
Block a user