mirror of
https://github.com/vale981/bspwm
synced 2025-03-06 10:11:43 -05:00

The last desktop and monitor are now deduced from the history. The stacking order is now independent from the history of the focused nodes: this prevents hacks on both sides. All windows are now considered in the stacking algorithm: it prevents tiled windows from one monitor to appear above the floating windows of another monitor. Transfered windows are stacked below the windows of the same kind.
6 lines
171 B
Bash
Executable file
6 lines
171 B
Bash
Executable file
#! /bin/sh
|
|
|
|
if [ -e "$BSPWM_TREE" ] ; then
|
|
bspc restore -T "$BSPWM_TREE" -H "$BSPWM_HISTORY" -S "$BSPWM_STACK"
|
|
rm "$BSPWM_TREE" "$BSPWM_HISTORY" "$BSPWM_STACK"
|
|
fi
|