mirror of
https://github.com/winneon/gsu.git
synced 2026-09-10 07:16:25 -04:00
general: fixed inconsistent formatting
This commit is contained in:
parent
c84b777219
commit
c168f8c2c9
8
gsu
8
gsu
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue