9 lines
173 B
Bash
Executable File
9 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
|
|
NEXT_WINDOW_RULES_PATH="/tmp/bspwm-next-window-rules"
|
|
|
|
[ -f "$NEXT_WINDOW_RULES_PATH" ] && {
|
|
cat "$NEXT_WINDOW_RULES_PATH"
|
|
rm "$NEXT_WINDOW_RULES_PATH"
|
|
}
|