2021-01-19 09:20:52 +00:00
|
|
|
---
|
|
|
|
module: [kind=event] monitor_resize
|
|
|
|
---
|
|
|
|
|
2023-03-15 21:52:13 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: 2021 The CC: Tweaked Developers
|
|
|
|
|
|
|
|
SPDX-License-Identifier: LicenseRef-CCPL
|
|
|
|
-->
|
|
|
|
|
2021-01-19 09:20:52 +00:00
|
|
|
The @{monitor_resize} event is fired when an adjacent or networked monitor's size is changed.
|
|
|
|
|
|
|
|
## Return Values
|
|
|
|
1. @{string}: The event name.
|
2023-01-16 22:53:58 +00:00
|
|
|
2. @{string}: The side or network ID of the monitor that was resized.
|
2021-01-19 09:20:52 +00:00
|
|
|
|
|
|
|
## Example
|
|
|
|
Prints a message when a monitor is resized:
|
2023-01-16 22:53:58 +00:00
|
|
|
|
2021-01-19 09:20:52 +00:00
|
|
|
```lua
|
|
|
|
while true do
|
|
|
|
local event, side = os.pullEvent("monitor_resize")
|
|
|
|
print("The monitor on side " .. side .. " was resized.")
|
|
|
|
end
|
|
|
|
```
|