awesome-launch/init.lua

214 lines
6.3 KiB
Lua
Raw Normal View History

2019-03-28 15:39:13 +01:00
--- Launch clients with single instance IDs using wm-launch.
--
-- @author James Reed <jcrd@tuta.io>
-- @copyright 2019 James Reed
2019-07-03 01:22:20 +02:00
-- @module awesome-launch
2019-03-28 15:39:13 +01:00
local awful = require("awful")
local gears = require("gears")
2019-08-14 02:52:22 +02:00
local wibox = require("wibox")
local beautiful = require("beautiful")
local uuid = require("uuid")
2019-09-09 22:09:09 +02:00
local shared = require("awesome-launch.shared")
2019-03-28 15:39:13 +01:00
2019-09-09 22:09:09 +02:00
uuid.seed()
2019-08-14 02:52:22 +02:00
local launch = {}
2019-09-09 22:09:09 +02:00
launch.widget = require("awesome-launch.widget")
2019-03-28 15:39:13 +01:00
awesome.register_xproperty("WM_LAUNCH_ID", "string")
awful.rules.add_rule_source("launch",
function (c, props, callbacks)
2019-03-28 15:39:13 +01:00
local id = c:get_xproperty("WM_LAUNCH_ID")
if not id or id == "" then return end
2019-09-09 22:09:09 +02:00
local data = shared.pending[id]
2019-03-28 15:39:13 +01:00
if not data then return end
data.timer:stop()
gears.table.crush(props, data.props)
if data.callback then
table.insert(callbacks, data.callback)
end
2019-09-09 22:09:09 +02:00
shared.pending[id] = nil
launch.widget.update_widgets()
2019-03-28 15:39:13 +01:00
end)
awful.client.property.persist("cmdline", "string")
launch.client = {}
2019-03-28 15:39:13 +01:00
local function get_ids()
local ids = {}
for _, c in ipairs(client.get()) do
if c.single_instance_id then ids[c.single_instance_id] = c end
end
return ids
end
--- Get a launched client by its ID.
2019-03-28 15:39:13 +01:00
--
-- @param id The ID.
2019-04-11 04:15:17 +02:00
-- @param filter Function to filter clients that are considered.
2019-03-28 15:39:13 +01:00
-- @return The client.
2019-04-11 04:15:17 +02:00
-- @function client.by_id
function launch.client.by_id(id, filter)
for _, c in ipairs(client.get()) do
if (not filter or filter(c)) and c.single_instance_id == id then
return c
end
end
end
--- Get a launched client by its command line.
--
2019-04-11 04:15:17 +02:00
-- @param cmd The command line.
-- @param filter Function to filter clients that are considered.
-- @return The client.
2019-04-11 04:15:17 +02:00
-- @function client.by_cmdline
function launch.client.by_cmdline(cmd, filter)
for _, c in ipairs(client.get()) do
if (not filter or filter(c)) and c.cmdline == cmd then
return c
end
end
2019-03-28 15:39:13 +01:00
end
--- Spawn a client with wm-launch.
--
-- @param cmd The command.
-- @param args Table containing the single instance ID and additional arguments
-- @param args.id Single instance ID.
-- @param args.props Properties to apply to the client.
-- @param args.pwd Pathname to the working directory for new clients.
-- @param args.timeout Seconds after which to stop waiting for a client to spawn.
-- @param args.callback Function to call with client when it spawns.
-- @param args.factory The factory to use (see wm-launch's -f flag).
-- @param args.firejail If true, run cmd with firejail.
2019-03-28 15:39:13 +01:00
-- @return The client's ID.
-- @function launch.spawn
local function spawn(cmd, args)
args = args or {}
local id = args.id or uuid()
2019-03-28 15:39:13 +01:00
local data = {
props = args.props or {},
pwd = args.pwd,
callback = args.callback,
2019-08-14 02:52:22 +02:00
timeout = math.ceil(args.timeout or 10),
2019-03-28 15:39:13 +01:00
}
gears.table.crush(data.props, {
single_instance_id = id,
cmdline = cmd,
})
2019-08-14 02:52:22 +02:00
local step = 1/2
2019-03-28 15:39:13 +01:00
data.timer = gears.timer {
2019-08-14 02:52:22 +02:00
timeout = step,
callback = function ()
data.timeout = data.timeout - step
if data.timeout == 0 then
2019-09-09 22:09:09 +02:00
shared.pending[id] = nil
launch.widget.update_widgets()
2019-08-14 02:52:22 +02:00
return false
else
data.widget.id_const.id_margin.id_progress.value = data.timeout
end
return true
end,
2019-03-28 15:39:13 +01:00
}
2019-09-09 22:09:09 +02:00
if launch.widget.active() then
data.widget = launch.widget.new(cmd, data)
2019-08-14 02:52:22 +02:00
end
2019-09-10 00:13:35 +02:00
local launch_cmd = "wm-launch"
if args.factory then
2019-09-10 00:13:35 +02:00
launch_cmd = launch_cmd .. " -f " .. args.factory
end
if args.firejail then
2019-09-10 00:13:35 +02:00
launch_cmd = launch_cmd .. " -j"
end
2019-09-10 00:13:35 +02:00
launch_cmd = string.format("%s %s %s", launch_cmd, id, cmd)
2019-03-28 15:39:13 +01:00
if data.pwd then
2019-09-10 00:13:35 +02:00
awful.spawn.with_shell(string.format("cd %s; %s", data.pwd, launch_cmd))
2019-03-28 15:39:13 +01:00
else
2019-09-10 00:13:35 +02:00
awful.spawn(launch_cmd)
2019-03-28 15:39:13 +01:00
end
2019-09-09 22:09:09 +02:00
shared.pending[id] = data
launch.widget.update_widgets()
2019-03-28 15:39:13 +01:00
data.timer:start()
return id
end
launch.spawn = {}
setmetatable(launch.spawn, {__call = function (_, ...) spawn(...) end})
--- Spawn a command if an instance is not already running.
--
-- @param cmd The command.
-- @param args Table containing the single instance ID and additional arguments for spawn
-- @param args.id Single instance ID.
-- @param args.props Properties to apply to the client.
-- @param args.pwd Pathname to the working directory for new clients.
-- @param args.timeout Seconds after which to stop waiting for a client to spawn.
-- @param args.callback Function to call with client when it spawns.
-- @param args.factory The factory to use (see wm-launch's -f flag).
-- @param args.firejail If true, run cmd with firejail.
-- @param args.filter Function to filter clients that are considered.
2019-03-28 15:39:13 +01:00
-- @return The client's ID.
-- @function spawn.single_instance
function launch.spawn.single_instance(cmd, args)
local c
if args.id then
c = launch.client.by_id(args.id, args.filter)
else
c = launch.client.by_cmdline(cmd, args.filter)
end
2019-03-28 15:39:13 +01:00
if not c then return spawn(cmd, args) end
return args.id
end
--- Raise a client if it exists or spawn a new one then raise it.
--
-- @param cmd The command.
-- @param args Table containing the single instance ID and additional arguments for spawn
-- @param args.id Single instance ID.
-- @param args.props Properties to apply to the client.
-- @param args.pwd Pathname to the working directory for new clients.
-- @param args.timeout Seconds after which to stop waiting for a client to spawn.
-- @param args.callback Function to call with client when it spawns.
-- @param args.factory The factory to use (see wm-launch's -f flag).
-- @param args.firejail If true, run cmd with firejail.
-- @param args.filter Function to filter clients that are considered.
2019-03-28 15:39:13 +01:00
-- @return The client's ID.
-- @function spawn.raise_or_spawn
function launch.spawn.raise_or_spawn(cmd, args)
local c
if args.id then
c = launch.client.by_id(args.id, args.filter)
else
c = launch.client.by_cmdline(cmd, args.filter)
end
2019-03-28 15:39:13 +01:00
if c then
c:emit_signal("request::activate", "launch.spawn.raise_or_spawn",
{raise=true})
return args.id
end
return spawn(cmd, args)
end
return launch