From 0d4fd035d28247194f3e9d83d9dfd872ca646dc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Wed, 13 Sep 2023 11:10:03 +0200 Subject: [PATCH] Hopefully fix issue with callback crashes --- awesome/rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awesome/rc.lua b/awesome/rc.lua index 4492fad..45ebadd 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -57,7 +57,7 @@ gears.timer { call_now = true, autostart = true, 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 }