general: fixed inconsistent formatting

This commit is contained in:
Jesse Bryan 2017-09-04 20:03:06 -05:00
parent c84b777219
commit c168f8c2c9

8
gsu
View file

@ -162,10 +162,10 @@ get_command() {
case "$display" in
"active")
if (( $XMOUSE >= $TEMPMONX )); then
if (( $XMOUSE <= $TEMPMONX+$TEMPMONW )); then
if (( $YMOUSE >= $TEMPMONY )); then
if (( $YMOUSE <= $TEMPMONY+$TEMPMONH )); then
if (($XMOUSE >= $TEMPMONX)); then
if (($XMOUSE <= $TEMPMONX + $TEMPMONW)); then
if (($YMOUSE >= $TEMPMONY)); then
if (($YMOUSE <= $TEMPMONY + $TEMPMONH)); then
MONW=$TEMPMONW
MONH=$TEMPMONH
MONX=$TEMPMONX