Disable startup-notification globally

From awesome
Jump to: navigation, search

This is a wrapper function to disable startup-notification globally.

-- disable startup-notification globally
local oldspawn = awful.util.spawn
awful.util.spawn = function (s)
  oldspawn(s, false)
end

Put it e.g. at the bottom of your config file, if you are annoyed by the stopwatch/busy mouse cursor after starting programs with 'awful.util.spawn'.

Personal tools