From 871204a041cddf127149ef8e5fd1d5eb54784f51 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Tue, 26 Oct 2021 18:52:13 +0200 Subject: bindings: factor out swapping two screens --- workspace.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'workspace.lua') diff --git a/workspace.lua b/workspace.lua index 63fad94..654b118 100644 --- a/workspace.lua +++ b/workspace.lua @@ -4,6 +4,7 @@ local awful = require("awful") local object = require("gears.object") local stack = require("stack") local timer = require("gears.timer") +local utils = require("utils") local Workspace = {} @@ -168,6 +169,16 @@ function Workspace:client_move_relative(client, offset) end end +function Workspace:swap_screens(phys_idx) + local screen_dst = mouse.screen + local screen_src = utils.screen_physical(phys_idx) + if screen_src and screen_src ~= screen_dst then + local ss = workspace.screen_state[screen_src] + self:view(screen_dst, ss.desktop_idx, ss.page_idx) + timer.delayed_call(awful.screen.focus, screen_src) + end +end + function Workspace:new(layouts) local o = setmetatable({}, self) self.__index = self -- cgit v1.2.3