This repository has been archived on 2021-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/home/.config/awesome/utils.lua

15 lines
333 B
Lua
Raw Normal View History

local helpers = require("lain.helpers")
2018-10-28 14:14:27 +01:00
local utils = {}
2019-02-16 17:37:01 +01:00
function utils.home()
return os.getenv("HOME") .. "/"
end
function utils.handle_pid(command, callback)
helpers.async_with_shell(string.format("ps x -o pid=,command=|grep -E '^\\s*[0-9]* %s$'|sed 's/\\s*\\([0-9]*\\) .*/\\1/'", command), callback)
end
2018-10-28 14:14:27 +01:00
return utils