diff --git a/README.md b/README.md index 5786f1a..bfbc6d1 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,8 @@ When reporting bugs, please include: If you don't know how to reproduce it or can't, or you can't take a backtrace please still report the issue. ## Configuration +Set your `general:layout` to `hy3` in hyprland.conf. + hy3 requires using a few custom dispatchers for normal operation. In your hyprland config replace the following dispatchers: - `movefocus` -> `hy3:movefocus` @@ -46,7 +48,7 @@ Add an entry to your hyprload.toml like so: ```toml plugins = [ # ... - "outfoxxed/hy3" + "outfoxxed/hy3", # ... ] ``` diff --git a/hyprload.toml b/hyprload.toml index ad36620..0d3855c 100644 --- a/hyprload.toml +++ b/hyprload.toml @@ -6,7 +6,7 @@ author = "outfoxxed" [hy3.build] output = "build/libhy3.so" steps = [ - "rm -rf build" - "cmake -DCMAKE_BUILD_TYPE=Debug -B build" + "rm -rf build", + "cmake -DCMAKE_BUILD_TYPE=Debug -B build", "cmake --build build" -] \ No newline at end of file +]