fix: build output (#1032)

* Fix build output

* Fix command
This commit is contained in:
Jas Singh
2025-06-27 22:17:47 -07:00
committed by GitHub
parent a46929e4c5
commit d4895922de
3 changed files with 3 additions and 3 deletions

View File

@@ -137,7 +137,7 @@
if [ "$#" -eq 0 ]; then
exec ${self.packages.${pkgs.stdenv.system}.unwrapped}/bin/hyprpanel
else
exec ${ags.packages.${pkgs.stdenv.system}.io}/bin/astal -i hyprpanel "$@"
exec ${ags.packages.${pkgs.stdenv.system}.io}/bin/astal -i hyprpanel "$*"
fi
'';
}

View File

@@ -24,7 +24,7 @@ custom_target(
meson.project_source_root() / 'app.ts',
'@OUTPUT@',
],
output: meson.project_name(),
output: 'hyprpanel-app',
install: true,
install_dir: datadir,
build_always_stale: true,

View File

@@ -1,7 +1,7 @@
#!/bin/sh
if [ "$#" -eq 0 ]; then
exec "@DATADIR@/hyprpanel"
exec "@DATADIR@/hyprpanel-app"
else
exec astal -i hyprpanel "$*"
fi