mirror of
https://github.com/vale981/bspwm
synced 2025-03-14 06:46:37 -04:00

The new message syntax: - Provides 10 commands instead of 60. - Allows multiple actions to be applied in one call. The client now returns an non zero exit code when a message fails. The `is_adjacent` function now handles vacant nodes.
15 lines
384 B
Bash
Executable file
15 lines
384 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
|
|
bspc config focus_by_distance true
|