5 lines
159 B
Bash
Executable File
5 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
# Script to list the number of windows on the current desktop (workspace) in bspwm
|
|
|
|
bspc query --nodes --node .window --desktop focused | wc --lines
|