diff options
author | xero <x@xero.nu> | 2014-05-06 15:24:58 -0400 |
---|---|---|
committer | xero <x@xero.nu> | 2014-05-06 15:24:58 -0400 |
commit | c35c623c5a64be1e043a997600557709b7f9a686 (patch) | |
tree | 023a91c81adb06ad76bfd6bf1958acc95bdd3ebb /.config/awesome | |
parent | 8ed0b931b743c0b61e456a394d1a80c2d6b48b37 (diff) | |
download | dotfiles_ascii-c35c623c5a64be1e043a997600557709b7f9a686.tar.xz dotfiles_ascii-c35c623c5a64be1e043a997600557709b7f9a686.zip |
disable startup-notification in awesome globally
Diffstat (limited to '')
-rwxr-xr-x | .config/awesome/rc.lua | 6 |
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 |