Hopefully fix issue with callback crashes

This commit is contained in:
Thomas Avé 2023-09-13 11:10:03 +02:00
parent 4f759f7d99
commit 0d4fd035d2
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ gears.timer {
call_now = true, call_now = true,
autostart = true, autostart = true,
callback = function() callback = function()
awful.spawn.easy_async({"xmodmap", "/home/user/.Xmodmap"}) -- If not repeated it sometimes just stops working awful.spawn.with_shell({"xmodmap", "/home/user/.Xmodmap"}) -- If not repeated it sometimes just stops working
end end
} }