From 418d2b2b0829ed17e523867896ea321fc2b3a79b Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Thu, 1 Jan 2026 23:41:11 -0700 Subject: [refactor] Remove the foregin interface. The plugin will just call c functions through the FFI. --- plug/src/Config.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plug/src/Config.hs') diff --git a/plug/src/Config.hs b/plug/src/Config.hs index 153c483..70920fd 100644 --- a/plug/src/Config.hs +++ b/plug/src/Config.hs @@ -11,6 +11,7 @@ import Montis.Dsl.Input import Montis.Keys.Macros import Montis.Keys.MagicModifierKey import Montis.Layout.Full +import Montis.Core.Runtime (requestHotReload) config :: Config WindowLayout config = @@ -37,7 +38,7 @@ config = bind ev (Shift .+ Mod1 .+ 'R') $ run requestHotReload - bind ev (Mod1 .+ 't') $ run (shellExec "alacritty") + -- bind ev (Mod1 .+ 't') $ run (shellExec "alacritty") bind ev (Mod1 .+ 'p') $ do ev2 <- nextInputPressEvent -- cgit