aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtoggle-floaty14
1 files changed, 0 insertions, 14 deletions
diff --git a/toggle-floaty b/toggle-floaty
deleted file mode 100755
index 69e2c8f..0000000
--- a/toggle-floaty
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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