7 lines
94 B
Bash
Executable file
7 lines
94 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# allows bspwm to reload when killed
|
|
while true; do
|
|
bspwm || break
|
|
done
|