diff --git a/recipes/wip/0ad-data/recipe.toml b/recipes/wip/0ad-data/recipe.toml
index 008a310286ec05cae3803c2cc277aabd2ef9c7c5..73243c0b4592b4fc2a28e49d625780cf8b0d4a87 100644
--- a/recipes/wip/0ad-data/recipe.toml
+++ b/recipes/wip/0ad-data/recipe.toml
@@ -4,6 +4,6 @@ tar = "https://releases.wildfiregames.com/0ad-0.0.26-alpha-unix-data.tar.xz"
 [build]
 template = "custom"
 script = """
-mkdir -pv "${COOKBOOK_STAGE}"/home/user/.local/share/0ad/
-cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/home/user/.local/share/0ad/
+mkdir -pv "${COOKBOOK_STAGE}"/usr/share/0ad/
+cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/usr/share/0ad/
 """
diff --git a/recipes/wip/hyprland/recipe.toml b/recipes/wip/hyprland/recipe.toml
index ee54a979c54904121cc01579adddfde29a952d44..a4b04d723dbf091c781de5151f2fc98ed90a4c3f 100644
--- a/recipes/wip/hyprland/recipe.toml
+++ b/recipes/wip/hyprland/recipe.toml
@@ -19,6 +19,6 @@ dependencies = [
     "libxfixes",
 ]
 script = """
-mkdir -pv "${COOKBOOK_STAGE}"/home/user/.local/share/wayland-sessions
-cp -rv "${COOKBOOK_SOURCE}"/example/hyprland.desktop "${COOKBOOK_STAGE}"/home/user/.local/share/wayland-sessions
+mkdir -pv "${COOKBOOK_STAGE}"/usr/share/wayland-sessions
+cp -rv "${COOKBOOK_SOURCE}"/example/hyprland.desktop "${COOKBOOK_STAGE}"/usr/share/wayland-sessions
 """
diff --git a/recipes/wip/niri/recipe.toml b/recipes/wip/niri/recipe.toml
index 582004fe0553728ebc0a6910e7cf0969650b6c75..861d71148d21a001806c24058df516c29b051518 100644
--- a/recipes/wip/niri/recipe.toml
+++ b/recipes/wip/niri/recipe.toml
@@ -9,10 +9,10 @@ dependencies = [
 ]
 script = """
 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
+mkdir -pv "${COOKBOOK_STAGE}"/usr/share/wayland-sessions
+mkdir -pv "${COOKBOOK_STAGE}"/usr/share/xdg-desktop-portal
 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
+cp -rv "${COOKBOOK_SOURCE}"/resources/niri.desktop "${COOKBOOK_STAGE}"/usr/share/wayland-sessions
+cp -rv "${COOKBOOK_SOURCE}"/resources/niri-portals.conf "${COOKBOOK_STAGE}"/usr/share/xdg-desktop-portal
 cookbook_cargo
 """
diff --git a/recipes/wip/satty/recipe.toml b/recipes/wip/satty/recipe.toml
index 7dfcb0a17641f70e1d7620c892173584c9b5ae43..4e403a7d937ca60d2360e49344de60e7eb31f352 100644
--- a/recipes/wip/satty/recipe.toml
+++ b/recipes/wip/satty/recipe.toml
@@ -12,9 +12,9 @@ dependencies = [
     "gdk-pixbuf",
 ]
 script = """
-mkdir -pv "${COOKBOOK_STAGE}"/home/user/.local/share/applications
-mkdir -pv "${COOKBOOK_STAGE}"/home/user/.local/share/icons/hicolor/scalable/apps
-cp -rv "${COOKBOOK_SOURCE}"/satty.desktop "${COOKBOOK_STAGE}"/home/user/.local/share/applications
-cp -rv "${COOKBOOK_SOURCE}"/assets/satty.svg "${COOKBOOK_STAGE}"/home/user/.local/share/icons/hicolor/scalable/apps
+mkdir -pv "${COOKBOOK_STAGE}"/usr/share/applications
+mkdir -pv "${COOKBOOK_STAGE}"/usr/share/icons/hicolor/scalable/apps
+cp -rv "${COOKBOOK_SOURCE}"/satty.desktop "${COOKBOOK_STAGE}"/usr/share/applications
+cp -rv "${COOKBOOK_SOURCE}"/assets/satty.svg "${COOKBOOK_STAGE}"/usr/share/icons/hicolor/scalable/apps
 cookbook_cargo_packages satty
 """