From 3f6df74a4a28e1445297b2a7ec0f675572617d77 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Wed, 19 Apr 2023 03:07:05 -0700 Subject: [PATCH] Fix readme and hyprload.toml --- README.md | 4 +++- hyprload.toml | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) 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 +]