From d4895922de7c0908218557f252e4f8778da60fe2 Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Fri, 27 Jun 2025 22:17:47 -0700 Subject: [PATCH] fix: build output (#1032) * Fix build output * Fix command --- flake.nix | 2 +- meson.build | 2 +- scripts/hyprpanel_launcher.sh.in | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 1d2f30a..9520d27 100644 --- a/flake.nix +++ b/flake.nix @@ -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 ''; } diff --git a/meson.build b/meson.build index d141d8e..5198eea 100644 --- a/meson.build +++ b/meson.build @@ -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, diff --git a/scripts/hyprpanel_launcher.sh.in b/scripts/hyprpanel_launcher.sh.in index 9390c4a..bd38d31 100644 --- a/scripts/hyprpanel_launcher.sh.in +++ b/scripts/hyprpanel_launcher.sh.in @@ -1,7 +1,7 @@ #!/bin/sh if [ "$#" -eq 0 ]; then - exec "@DATADIR@/hyprpanel" + exec "@DATADIR@/hyprpanel-app" else exec astal -i hyprpanel "$*" fi