#!/bin/bash

# bspwm_adjust_borders --- Change border width in focused BSPWM desktop.
#
# Copyright (c) 2023  Protesilaos Stavrou <info@protesilaos.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.	If not, see <https://www.gnu.org/licenses/>.

border_width_current=$(bspc config -d focused border_width)
border_width_increment=${1-0}
border_width_new=$(($border_width_current + $border_width_increment))

# Make it cyclic.
if [ $border_width_new -lt 0 ]
then
    border_width_new=15
elif [ $border_width_new -gt 15 ]
then
    border_width_new=0
fi

bspc config -d focused border_width $border_width_new
