comment bug fixed.
This commit is contained in:
parent
74707638a0
commit
61987c3642
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@ INPUT=$1 # input
|
|||
FW=$(pfw) # focused window
|
||||
SW=$(wattr w $(lsw -r)) # screen width
|
||||
SH=$(wattr h $(lsw -r)) # screen height
|
||||
WW=$((SW * 40 / 100)) # windows width = 80% of the screen
|
||||
WH=$((SH * 40 / 100)) # windows height = 80% of the screen
|
||||
WW=$((SW * 80 / 100)) # windows width = 80% of the screen
|
||||
WH=$((SH * 80 / 100)) # windows height = 80% of the screen
|
||||
MAXX=$((SW - WW)) # max X coordinate
|
||||
MAXY=$((SH - WH)) # max Y coordinate
|
||||
FREQ=20 # refresh frequency
|
||||
|
|
Loading…
Reference in a new issue