mirror of
https://github.com/vale981/bspwm
synced 2025-03-13 14:26:41 -04:00
13 lines
238 B
Bash
Executable file
13 lines
238 B
Bash
Executable file
#! /bin/sh
|
|
|
|
if [ -e "$BSPWM_TREE" ] ; then
|
|
bspc restore -T "$BSPWM_TREE"
|
|
rm "$BSPWM_TREE"
|
|
else
|
|
bspc control --adopt-orphans
|
|
fi
|
|
|
|
if [ -e "$BSPWM_HISTORY" ] ; then
|
|
bspc restore -H "$BSPWM_HISTORY"
|
|
rm "$BSPWM_HISTORY"
|
|
fi
|