From 3c0eb72c0527ac2dd72e56420a729ba571e443c0 Mon Sep 17 00:00:00 2001 From: Yury Shvedov Date: Sat, 8 Mar 2025 14:07:28 +0300 Subject: [PATCH] nix: synchronize options Add `trayStyle`, `devTools`, `vibeAnimationMaxFps` and `customTitleBar` configuration options. --- nix/default.nix | 25 ++++++++++++++++++++++--- nix/module.nix | 25 ++++++++++++++++++++++++- 2 files changed, 46 insertions(+), 4 deletions(-) diff --git a/nix/default.nix b/nix/default.nix index 89b0f91..193dbae 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -12,10 +12,18 @@ , ymExe ? null , electronArguments ? "" , trayEnabled ? false +, trayStyle ? 1 +, trayAlways ? false +, devTools ? false +, vibeAnimationMaxFps ? 25 +, customTitleBar ? false }: let + inherit (lib) optionalString assertMsg; version_info = with builtins; fromJSON (readFile ../utility/version_info.json); in +assert assertMsg (trayStyle >= 1 && trayStyle <= 3) "Tray style must be withing 1 and 3"; +assert assertMsg (vibeAnimationMaxFps >= 0) "Vibe animation max FPS must be greater then 0"; stdenvNoCC.mkDerivation { name = "yandex-music"; @@ -53,14 +61,25 @@ stdenvNoCC.mkDerivation ''; dontPatch = true; + config ='' + ELECTRON_ARGS="${electronArguments}" + VIBE_ANIMATION_MAX_FPS=${toString vibeAnimationMaxFps} + '' + optionalString trayEnabled '' + TRAY_ENABLED=${toString trayStyle} + '' + optionalString trayAlways '' + ALWAYS_LEAVE_TO_TRAY=1 + '' + optionalString devTools '' + DEV_TOOLS=1 + '' + optionalString customTitleBar '' + CUSTOM_TITLE_BAR=1 + ''; + installPhase = '' mkdir -p "$out/share/nodejs" mv app/yandex-music.asar "$out/share/nodejs" CONFIG_FILE="$out/share/yandex-music.conf" - echo "TRAY_ENABLED=${if trayEnabled then "1" else "0"}" >> "$CONFIG_FILE" - echo "ELECTRON_ARGS=\"${electronArguments}\"" >> "$CONFIG_FILE" - + echo "$config" >> "$CONFIG_FILE" install -Dm755 "$ymScript" "$out/bin/yandex-music" sed -i "s|%electron_path%|${electron}/bin/electron|g" "$out/bin/yandex-music" diff --git a/nix/module.nix b/nix/module.nix index f81c461..76f3e76 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -19,6 +19,24 @@ in programs.yandex-music = { enable = lib.mkEnableOption "yandex music application"; tray.enable = lib.mkEnableOption "tray icon for yandex music application"; + tray.style = lib.mkOption { + description = "Style of tray icon. 1 is default, 2 is mono black, 3 is mono white"; + default = 1; + type = lib.types.ints.between 1 3; + }; + tray.always = lib.mkEnableOption "leave in tray disregarding of play state"; + devTools.enable = lib.mkEnableOption "development tools"; + vibeAnimationMaxFps = lib.mkOption { + description = '' + Vibe animation FPS from 0 (black screen) to to any reasonable number. + Recommended `25` - `144` + ''; + default = 25; + type = lib.types.ints.unsigned; + }; + customTitleBar.enable = lib.mkEnableOption '' + Yandex Music's custom Windows-styled titlebar + ''; electronArguments = lib.mkOption { description = "Extra electron arguments"; example = "--no-sandbox --trace-warnings"; @@ -30,7 +48,12 @@ in type = lib.types.package; default = pkgs.yandex-music.override { trayEnabled = cfg.tray.enable; - electronArguments = cfg.electronArguments; + trayStyle = cfg.tray.style; + trayAlways = cfg.tray.always; + devTools = cfg.devTools.enable; + customTitleBar = cfg.customTitleBar.enable; + + inherit (cfg) electronArguments vibeAnimationMaxFps; }; }; };