aboutsummaryrefslogtreecommitdiff
path: root/toggle-floaty
blob: 69e2c8f1283f09903515621baea0c3b9f5d02b0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
#
# make a tiled window floating and sticky
# or make a floaty window tiled

bspc node -t floating
if [ $? -eq 0 ]; then
  echo tiled
  bspc node -g sticky=on
else
  echo floaty
  bspc node -t tiled
  bspc node -g sticky=off
fi