aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.config/awesome/rc.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index 86f03a3..8184abc 100755
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -891,4 +891,10 @@ for s = 1, screen.count() do screen[s]:connect_signal("arrange", function ()
end)
end
+-- disable startup-notification globally
+local oldspawn = awful.util.spawn
+awful.util.spawn = function (s)
+ oldspawn(s, false)
+end
+
run_once("nitrogen --restore") \ No newline at end of file