diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2026-01-01 23:41:11 -0700 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2026-01-01 23:41:11 -0700 |
| commit | 418d2b2b0829ed17e523867896ea321fc2b3a79b (patch) | |
| tree | da0fad8ae1d46bb30ab2e2ea1fe4fa4f7c51aed6 /plug/src/Config.hs | |
| parent | 1df0b552f17f15942a350def6736d5535e545d4c (diff) | |
| download | montis-418d2b2b0829ed17e523867896ea321fc2b3a79b.tar.gz montis-418d2b2b0829ed17e523867896ea321fc2b3a79b.tar.bz2 montis-418d2b2b0829ed17e523867896ea321fc2b3a79b.zip | |
[refactor] Remove the foregin interface.
The plugin will just call c functions through the FFI.
Diffstat (limited to 'plug/src/Config.hs')
| -rw-r--r-- | plug/src/Config.hs | 3 |
1 files changed, 2 insertions, 1 deletions
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 |