aboutsummaryrefslogtreecommitdiff
path: root/toggle-floaty
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2024-03-19 23:15:21 +0200
committersrdusr <trevorgray@srdusr.com>2024-03-19 23:15:21 +0200
commitadd9e34717ec785353865d0af0d66b0607c56773 (patch)
treeeaf0fb0c3f9cd86fff123d929d1fc4fa0ccf9399 /toggle-floaty
parent52d87e2329eaa5f56a1f0bad3913bd5820537f53 (diff)
downloaddotfiles-add9e34717ec785353865d0af0d66b0607c56773.tar.gz
dotfiles-add9e34717ec785353865d0af0d66b0607c56773.zip
Moved to .config/bspwm/scripts
Diffstat (limited to 'toggle-floaty')
-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