summaryrefslogtreecommitdiff
path: root/workspace.lua
diff options
context:
space:
mode:
Diffstat (limited to 'workspace.lua')
-rw-r--r--workspace.lua11
1 files changed, 11 insertions, 0 deletions
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