This repository has been archived by the owner on Nov 14, 2019. It is now read-only.
Add
- Config
windowLocation
: change ueli location to a fixed position or relative to center.
To set a fixed location, set numbers for both x
field and y
field or just one of them. Example:
"windowLocation": {
"x": 200,
"y": 300
}
"windowLocation": {
"y": 100
}
"windowLocation": {
"x": 400
}
To set a center-relative position, set strings for both field or just one of them. Example:
Move window 200px to the left from the center:
"windowLocation": {
"x": "-200"
}
Move window 30px to the bottom from the center:
"windowLocation": {
"y": "+30"
}