#!/bin/sh

export MONITOR=$(xrandr -q | grep primary | cut -d' ' -f1)
export MONITORS=( $(xrandr -q | grep ' connected' | cut -d' ' -f1) )
MONITOR=${MONITOR:-${MONITORS[0]}}

# Only have workspaces for primary monitor
bspc monitor $MONITOR -d {1,2,3,4,5}

bspc config remove_disabled_monitors true
bspc config remove_unplugged_monitors true

bspc rule -r '*'

bspc rule -a Pinentry state=floating center=on
bspc rule -a Emacs split_ratio=0.28 state=fullscreen border=off
bspc rule -a xst-256color border=off
bspc rule -a Firefox split_ratio=0.32
bspc rule -a feh state=fullscreen
bspc rule -a 'Emacs:org*' state=floating
bspc rule -a 'Emacs:scratch' state=floating
bspc rule -a 'Emacs:emacs-everywhere' state=floating sticky=on
bspc rule -a st-scratch state=floating sticky=on center=on
bspc rule -a st-calc state=floating sticky=on center=on

bspc rule -a mpv state=floating center=on
bspc rule -a Vlc state=floating monitor=C center=on

bspc rule -a discord desktop=^3
bspc rule -a Slack desktop=^3
bspc rule -a Ripcord desktop=^3
bspc rule -a Spotify desktop=^4

for file in $XDG_CONFIG_HOME/bspwm/rc.d/*; do
  source "$file"
done
