mirror of
https://github.com/vale981/bspwm
synced 2025-03-06 18:21:43 -05:00

The removal is motivated by the following example: +-------+-------+ | | | | | b | | | | | |_______| | a | | | * | c | | | | | |_______| | | | | | d | | | | +-------+-------+ Bellow is a summary of the number of steps required to reach *b*, *c* and *d* with *a* as a starting point with the associated mean and variance: focus_by_distance steps mean variance --------------------------------------------------------------- false 1, 2, 3 2 2/3 true 2, 1, 2 5/3 2/9
14 lines
347 B
Bash
Executable file
14 lines
347 B
Bash
Executable file
#! /bin/sh
|
|
|
|
FIRST_DESK=1
|
|
REMAINING_DESKS="$(seq 2 9) 0"
|
|
bspc desktop Desktop01 -n $FIRST_DESK
|
|
bspc monitor -a $REMAINING_DESKS
|
|
|
|
bspc rule -a Gimp -d Eight --floating
|
|
|
|
bspc config split_ratio 0.52
|
|
bspc config border_width 2
|
|
bspc config window_gap 12
|
|
bspc config borderless_monocle true
|
|
bspc config gapless_monocle true
|