aboutsummaryrefslogtreecommitdiff
path: root/.config/bspwm/scripts/bspwindows
diff options
context:
space:
mode:
Diffstat (limited to '.config/bspwm/scripts/bspwindows')
-rwxr-xr-x.config/bspwm/scripts/bspwindows14
1 files changed, 0 insertions, 14 deletions
diff --git a/.config/bspwm/scripts/bspwindows b/.config/bspwm/scripts/bspwindows
deleted file mode 100755
index 26deeab..0000000
--- a/.config/bspwm/scripts/bspwindows
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-# bspwindows
-# get targets for drawing borders/whatever on in bspwm
-
-target="${1:-active}"
-
-case "$target" in
- active)
- bspc query -N -n .local.descendant_of.window.leaf.!fullscreen
- ;;
- inactive)
- bspc query -N -n .local.!descendant_of.window.leaf.!fullscreen
- ;;
-esac