This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/common/bin/bspwm_load_state

10 lines
214 B
Bash
Executable File

#!/usr/bin/env bash
f="$DOTFILES_PATH/.bspwm-state.json.tmp"
c="$DOTFILES_PATH/.bspwm-canvas.json.tmp"
bspwm_load_state_canvas "$f" > "$c"
chmod 600 "$c"
bspc wm -l "$c"
rm "$c"
bspwm_load_state_rules "$f" | bash