Remove 'method' from cmd_move_window_to_position
For command: move window to [absolute] position X px Y px if the optional keyword 'absolute' is provided the end result is the same even though it is implemented differently. Only difference is that with absolute the floating window can move completely outside of any output. This commit removes the 'method' argument and only keeps the sane implementation.
This commit is contained in:
@ -2030,10 +2030,13 @@ Use the +move+ command to move a container.
|
||||
# defaults to 10 pixels.
|
||||
move <left|right|down|up> [<px> px]
|
||||
|
||||
# Moves the container either to a specific location
|
||||
# or to the center of the screen. If 'absolute' is
|
||||
# used, it is moved to the center of all outputs.
|
||||
move [absolute] position <pos_x> [px] <pos_y> [px]
|
||||
# Moves the container to the specified pos_x and pos_y
|
||||
# coordinates on the screen.
|
||||
move position <pos_x> [px] <pos_y> [px]
|
||||
|
||||
# Moves the container to the center of the screen.
|
||||
# If 'absolute' is used, it is moved to the center of
|
||||
# all outputs.
|
||||
move [absolute] position center
|
||||
|
||||
# Moves the container to the current position of the
|
||||
|
Reference in New Issue
Block a user