diff --git a/recipes/wip/ani-cli/recipe.toml b/recipes/wip/ani-cli/recipe.toml
index 8fd8bbf1980506915392450c34c5ffe5ecc6b530..bac9aae4300fa6868641f9b79d079ae36d40ec4a 100644
--- a/recipes/wip/ani-cli/recipe.toml
+++ b/recipes/wip/ani-cli/recipe.toml
@@ -5,7 +5,7 @@ rev = "4a77bca5d95ae755ab5ac129c2db2025feab217b"
 [build]
 template = "custom"
 script = """
-mkdir -pv "${COOKBOOK_STAGE}"/bin
-cp "${COOKBOOK_SOURCE}"/ani-cli "${COOKBOOK_STAGE}"/bin/ani-cli
-chmod a+x "${COOKBOOK_STAGE}"/bin/ani-cli
+mkdir -pv "${COOKBOOK_STAGE}"/usr/bin
+cp "${COOKBOOK_SOURCE}"/ani-cli "${COOKBOOK_STAGE}"/usr/bin/ani-cli
+chmod a+x "${COOKBOOK_STAGE}"/usr/bin/ani-cli
 """
diff --git a/recipes/wip/ani-skip/recipe.toml b/recipes/wip/ani-skip/recipe.toml
index 454b15dffb76bde99d7869aa7b56716b85d260ab..7af44b1f1e15efd3c2013c6cb165eb088abd6c97 100644
--- a/recipes/wip/ani-skip/recipe.toml
+++ b/recipes/wip/ani-skip/recipe.toml
@@ -4,9 +4,9 @@ git = "https://github.com/synacktraa/ani-skip"
 [build]
 template = "custom"
 script = """
-mkdir -pv "${COOKBOOK_STAGE}"/bin
+mkdir -pv "${COOKBOOK_STAGE}"/usr/bin
 mkdir -pv "${COOKBOOK_STAGE}"/home/user/.config/mpv/scripts
-cp "${COOKBOOK_SOURCE}"/ani-skip "${COOKBOOK_STAGE}"/bin/ani-skip
+cp "${COOKBOOK_SOURCE}"/ani-skip "${COOKBOOK_STAGE}"/usr/bin/ani-skip
 cp "${COOKBOOK_SOURCE}"/skip.lua "${COOKBOOK_STAGE}"/home/user/.config/mpv/scripts
-chmod a+x "${COOKBOOK_STAGE}"/bin/ani-skip
+chmod a+x "${COOKBOOK_STAGE}"/usr/bin/ani-skip
 """
diff --git a/recipes/wip/dra-cla/recipe.toml b/recipes/wip/dra-cla/recipe.toml
index 04370b4886d53f099d604147cfc8f4fefc417564..c201a2d134feb8ddfd15930f9a3fcf44ae1b3566 100644
--- a/recipes/wip/dra-cla/recipe.toml
+++ b/recipes/wip/dra-cla/recipe.toml
@@ -4,7 +4,7 @@ git = "https://github.com/CoolnsX/dra-cla"
 [build]
 template = "custom"
 script = """
-mkdir -pv "${COOKBOOK_STAGE}"/bin
-cp "${COOKBOOK_SOURCE}"/dra-cla "${COOKBOOK_STAGE}"/bin/dra-cla
-chmod a+x "${COOKBOOK_STAGE}"/bin/dra-cla
+mkdir -pv "${COOKBOOK_STAGE}"/usr/bin
+cp "${COOKBOOK_SOURCE}"/dra-cla "${COOKBOOK_STAGE}"/usr/bin/dra-cla
+chmod a+x "${COOKBOOK_STAGE}"/usr/bin/dra-cla
 """
diff --git a/recipes/wip/hickory-dns/recipe.toml b/recipes/wip/hickory-dns/recipe.toml
index 5d3bb1a0fbf41c50c0ba1739067a60c06c57281c..399ad9fc8ba908e0b9a1dfd00b8dbd5f7769249e 100644
--- a/recipes/wip/hickory-dns/recipe.toml
+++ b/recipes/wip/hickory-dns/recipe.toml
@@ -14,8 +14,8 @@ binary=hickory-dns
             --bin "${binary}" \
             --release
             --all-features
-        mkdir -pv "${COOKBOOK_STAGE}/bin"
+        mkdir -pv "${COOKBOOK_STAGE}/usr/bin"
         cp -v \
             "target/${TARGET}/release/${binary}" \
-            "${COOKBOOK_STAGE}/bin/${binary}"
+            "${COOKBOOK_STAGE}/usr/bin/${binary}"
 """
diff --git a/recipes/wip/humphrey/recipe.toml b/recipes/wip/humphrey/recipe.toml
index a3dadf1d22f44d3d03fd5c4bd2c30a50a8ff7bca..19c4e43891d4d4ae179a6b408195d605b9e401c2 100644
--- a/recipes/wip/humphrey/recipe.toml
+++ b/recipes/wip/humphrey/recipe.toml
@@ -1,17 +1,17 @@
-#TODO wrong script
+#TODO not compiled or tested
 [source]
 git = "https://github.com/w-henderson/Humphrey"
 [build]
 template = "custom"
 script = """
-package="humphrey_server"
+binary=humphrey_server
 "${COOKBOOK_CARGO}" build \
             --manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
-            --package "${package}" \
+            --bin "${binary}" \
             --release
-           --all-features
-        mkdir -pv "${COOKBOOK_STAGE}/bin"
+            --all-features
+        mkdir -pv "${COOKBOOK_STAGE}/usr/bin"
         cp -v \
-            "target/${TARGET}/release/${package}" \
-            "${COOKBOOK_STAGE}/bin/${package}"
+            "target/${TARGET}/release/${binary}" \
+            "${COOKBOOK_STAGE}/usr/bin/${binary}"
 """
diff --git a/recipes/wip/intermodal/recipe.toml b/recipes/wip/intermodal/recipe.toml
index 2efca300b515b87835011c638fbcd7e4584354de..493823ff0eb87f51d8d4bceb0d6eff2251a2788d 100644
--- a/recipes/wip/intermodal/recipe.toml
+++ b/recipes/wip/intermodal/recipe.toml
@@ -5,5 +5,5 @@ git = "https://github.com/casey/intermodal"
 template = "custom"
 script = """
 cookbook_cargo
-mv "${COOKBOOK_STAGE}/bin/imdl" "${COOKBOOK_STAGE}/bin/intermodal"
+mv "${COOKBOOK_STAGE}/usr/bin/imdl" "${COOKBOOK_STAGE}/usr/bin/intermodal"
 """
diff --git a/recipes/wip/jerry/recipe.toml b/recipes/wip/jerry/recipe.toml
index 7d5c1f1b8888b21614661b2ddc5e1f5e66d33322..5e32f69e896218ccefa28194dc7c81ddd1d130e4 100644
--- a/recipes/wip/jerry/recipe.toml
+++ b/recipes/wip/jerry/recipe.toml
@@ -4,7 +4,7 @@ git = "https://github.com/justchokingaround/jerry"
 [build]
 template = "custom"
 script = """
-mkdir -pv "${COOKBOOK_STAGE}"/bin
-cp "${COOKBOOK_SOURCE}"/jerry.sh "${COOKBOOK_STAGE}"/bin/jerry
-chmod a+x "${COOKBOOK_STAGE}"/bin/jerry
+mkdir -pv "${COOKBOOK_STAGE}"/usr/bin
+cp "${COOKBOOK_SOURCE}"/jerry.sh "${COOKBOOK_STAGE}"/usr/bin/jerry
+chmod a+x "${COOKBOOK_STAGE}"/usr/bin/jerry
 """
diff --git a/recipes/wip/lobster/recipe.toml b/recipes/wip/lobster/recipe.toml
index 04a277f759eab247aea94615458b6e5687a7a2b3..0c32de9f1b0bd9865e8c648306dee0ad049dda0b 100644
--- a/recipes/wip/lobster/recipe.toml
+++ b/recipes/wip/lobster/recipe.toml
@@ -4,7 +4,7 @@ git = "https://github.com/justchokingaround/lobster"
 [build]
 template = "custom"
 script = """
-mkdir -pv "${COOKBOOK_STAGE}"/bin
-cp "${COOKBOOK_SOURCE}"/lobster.sh "${COOKBOOK_STAGE}"/bin/lobster
-chmod a+x "${COOKBOOK_STAGE}"/bin/lobster
+mkdir -pv "${COOKBOOK_STAGE}"/usr/bin
+cp "${COOKBOOK_SOURCE}"/lobster.sh "${COOKBOOK_STAGE}"/usr/bin/lobster
+chmod a+x "${COOKBOOK_STAGE}"/usr/bin/lobster
 """
diff --git a/recipes/wip/lsix/recipe.toml b/recipes/wip/lsix/recipe.toml
index 7a42e18da2027c300aec37bce4706234efdd0029..0e48e66ac2437c9fb26219668b9469341749b593 100644
--- a/recipes/wip/lsix/recipe.toml
+++ b/recipes/wip/lsix/recipe.toml
@@ -4,11 +4,7 @@ git = "https://github.com/hackerb9/lsix"
 [build]
 template = "custom"
 script = """
-mkdir -pv "${COOKBOOK_STAGE}"/bin
-cp "${COOKBOOK_SOURCE}"/lsix "${COOKBOOK_STAGE}"/bin/lsix
-chmod a+x "${COOKBOOK_STAGE}"/bin/lsix
+mkdir -pv "${COOKBOOK_STAGE}"/usr/bin
+cp "${COOKBOOK_SOURCE}"/lsix "${COOKBOOK_STAGE}"/usr/bin/lsix
+chmod a+x "${COOKBOOK_STAGE}"/usr/bin/lsix
 """
-[package]
-dependencies = [
-    "imagemagick7",
-]
diff --git a/recipes/wip/neofetch/recipe.toml b/recipes/wip/neofetch/recipe.toml
index d53772feeefb935b68944f6ceda01cee1e0a1b55..f1438fbd2e88994cc9c27fe26783f4feea2d2cc6 100644
--- a/recipes/wip/neofetch/recipe.toml
+++ b/recipes/wip/neofetch/recipe.toml
@@ -5,7 +5,7 @@ rev = "60d07dee6b76769d8c487a40639fb7b5a1a7bc85"
 [build]
 template = "custom"
 script = """
-mkdir -pv "${COOKBOOK_STAGE}"/bin
-cp "${COOKBOOK_SOURCE}"/neofetch "${COOKBOOK_STAGE}"/bin/neofetch
-chmod a+x "${COOKBOOK_STAGE}"/bin/neofetch
+mkdir -pv "${COOKBOOK_STAGE}"/usr/bin
+cp "${COOKBOOK_SOURCE}"/neofetch "${COOKBOOK_STAGE}"/usr/bin/neofetch
+chmod a+x "${COOKBOOK_STAGE}"/usr/bin/neofetch
 """
diff --git a/recipes/wip/niri/recipe.toml b/recipes/wip/niri/recipe.toml
index 76763e59ec2283eb94ea35d15ec349623ece53b7..582004fe0553728ebc0a6910e7cf0969650b6c75 100644
--- a/recipes/wip/niri/recipe.toml
+++ b/recipes/wip/niri/recipe.toml
@@ -8,10 +8,10 @@ dependencies = [
     "libwayland",
 ]
 script = """
-mkdir -pv "${COOKBOOK_STAGE}"/bin
+mkdir -pv "${COOKBOOK_STAGE}"/usr/bin
 mkdir -pv "${COOKBOOK_STAGE}"/home/user/.local/share/wayland-sessions
 mkdir -pv "${COOKBOOK_STAGE}"/home/user/.local/share/xdg-desktop-portal
-cp -rv "${COOKBOOK_SOURCE}"/resources/niri-session "${COOKBOOK_STAGE}"/bin
+cp -rv "${COOKBOOK_SOURCE}"/resources/niri-session "${COOKBOOK_STAGE}"/usr/bin
 cp -rv "${COOKBOOK_SOURCE}"/resources/niri.desktop "${COOKBOOK_STAGE}"/home/user/.local/share/wayland-sessions
 cp -rv "${COOKBOOK_SOURCE}"/resources/niri-portals.conf "${COOKBOOK_STAGE}"/home/user/.local/share/xdg-desktop-portal
 cookbook_cargo
diff --git a/recipes/wip/symphonia-play/recipe.toml b/recipes/wip/symphonia-play/recipe.toml
index b6f2a4095c86bd03788aa3faf6e14fff3d96d922..09f2292b83ac7a43d9d6e92f83494157279b803e 100644
--- a/recipes/wip/symphonia-play/recipe.toml
+++ b/recipes/wip/symphonia-play/recipe.toml
@@ -6,5 +6,5 @@ git = "https://github.com/pdeljanov/Symphonia"
 template = "custom"
 script = """
 cookbook_cargo_packages symphonia-play
-mv "${COOKBOOK_STAGE}/bin/symphonia-play_symphonia-play" "${COOKBOOK_STAGE}/bin/symphonia-play"
+mv "${COOKBOOK_STAGE}/usr/bin/symphonia-play_symphonia-play" "${COOKBOOK_STAGE}/usr/bin/symphonia-play"
 """