bspc Command Examples in Linux

bspc is a command-line utility in Linux that is used to control and manipulate windows and desktops in the bspwm window manager. bspwm is a tiling window manager for X11 that allows you to arrange and manage windows on your desktop in a customizable and efficient way.

bspc is a utility that is designed to work with bspwm and provides a number of commands and options for controlling and manipulating windows and desktops in bspwm. bspc can be used to move, resize, and focus windows, create and switch between desktops, and perform other actions that are specific to bspwm.

bspc Command Examples

1. Define two virtual desktop:

# bspc monitor --reset-desktops 1 2

2. Focus the given desktop:

# bspc desktop --focus number

3. Close the windows rooted at the selected node:

# bspc node --close

4. Send the selected node to the given desktop:

# bspc node --to-desktop number

5. Toggle full screen mode for the selected node:

# bspc node --state ~fullscreen
Related Post