mirror of
https://github.com/vale981/bspwm
synced 2025-03-06 10:11:43 -05:00
8 lines
132 B
Bash
Executable file
8 lines
132 B
Bash
Executable file
#! /bin/sh
|
|
|
|
if [ -e "$BSPWM_BACKUP" ] ; then
|
|
bspc restore "$BSPWM_BACKUP"
|
|
rm "$BSPWM_BACKUP"
|
|
else
|
|
bspc adopt_orphans
|
|
fi
|