#!/bin/sh

sxhkd &

host_name=$(cat /proc/sys/kernel/hostname)
if [[ $host_name == "portalo" ]]; then
    bspc monitor HDMI-1 -d web terminal 3 4 5 6 game
    bspc monitor DVI-D-1 -d side-view voip messenger

    bspc desktop ^7 --layout monocle
    #bspc desktop ^9 --layout monocle
    bspc desktop ^10 --layout monocle
elif [[ $host_name == *"laptop"* ]]; then
    bspc monitor eDP1 -d web terminal 3 4 5 6 7 8 9 10
else
    bspc monitor primary -d web terminal 3 4 5 6 7 8 9 10
fi

bspc desktop web --layout monocle

bspc config border_width         1
bspc config window_gap           10

bspc config split_ratio          0.50
bspc config borderless_monocle   true
bspc config gapless_monocle      true

bspc config focus_follows_pointer true

bspc config automatic_scheme alternate

bspc config external_rules_command "$HOME/.config/bspwm/external_rules"

bspc rule -a 'firefox' desktop='web'
bspc rule -a 'firefox:Toolkit' follow='true' desktop='side-view' state='fullscreen'
bspc rule -a 'MPlayer' follow='true' desktop='side-view' state='fullscreen'
bspc rule -a 'TeamSpeak 3' desktop='voip' locked='true'
bspc rule -a 'Alacritty:mail' desktop='voip' locked='true' split_ratio='0.40'
bspc rule -a 'Element' desktop='voip' locked='true'
bspc rule -a 'Element (Riot)' desktop='voip' locked='true'
bspc rule -a 'discord' desktop='voip'
bspc rule -a 'Evolution' desktop='messenger'
bspc rule -a 'Signal' desktop='messenger' locked='true'
#bspc rule -a 'Steam' desktop='game'
bspc rule -a 'Zathura' state='tiled'
bspc rule -a 'Guitarix:guitarix' desktop='messenger'
bspc rule -a 'sticky-note:sticky-note' state=floating sticky=on border=off

$HOME/.config/polybar/launch.sh &
$HOME/.config/bspwm/swallow.py &