Merge pull request #1613 from SammysHP/spawn-cursor

Add beautiful property to control busy cursor during spawn
This commit is contained in:
Emmanuel Lepage Vallée 2017-03-17 15:15:20 -04:00 committed by GitHub
commit b73f9e963c
1 changed files with 6 additions and 1 deletions

View File

@ -14,13 +14,18 @@ local capi =
awesome = awesome,
root = root
}
local beautiful = require("beautiful")
local app_starting = {}
local cursor_waiting = "watch"
--- Show busy mouse cursor during spawn.
-- @beautiful beautiful.enable_spawn_cursor
-- @tparam[opt=true] boolean enable_spawn_cursor
local function update_cursor()
if #app_starting > 0 then
if #app_starting > 0 and beautiful.enable_spawn_cursor ~= false then
capi.root.cursor(cursor_waiting)
else
capi.root.cursor("left_ptr")