2020-12-08 21:34:57 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Clear the rules before adding any
|
|
|
|
while read -r rule _; do bspc rule -r "$rule"; done < <(bspc rule -l)
|
|
|
|
|
|
|
|
# Now add the rules
|
|
|
|
bspc rule -a 'firefox' desktop=^2 state=tiled
|
|
|
|
bspc rule -a 'steam_app_359320' desktop=^5
|
|
|
|
bspc rule -a 'steam_app_397540' desktop=^5
|
2023-03-07 13:45:07 +00:00
|
|
|
bspc rule -a 'steam_proton' desktop=^5
|
2020-12-08 21:34:57 +00:00
|
|
|
bspc rule -a 'Steam' desktop=^8
|
|
|
|
bspc rule -a '*' state=floating
|