diff options
author | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-10-02 23:48:12 +0200 |
---|---|---|
committer | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-10-02 23:48:12 +0200 |
commit | 420c13955556d66fc80bb623747a14753b47b644 (patch) | |
tree | 535dbd7bbaab2622c80e43cdbcfe2634da6d62a6 | |
parent | 6e3ec7b9ef6c920b26d8ed37e84d1eceb9e4c52d (diff) | |
download | nixos-420c13955556d66fc80bb623747a14753b47b644.tar nixos-420c13955556d66fc80bb623747a14753b47b644.tar.gz nixos-420c13955556d66fc80bb623747a14753b47b644.tar.bz2 nixos-420c13955556d66fc80bb623747a14753b47b644.tar.xz nixos-420c13955556d66fc80bb623747a14753b47b644.zip |
syntax weirdness
-rw-r--r-- | hel/recv-media.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hel/recv-media.nix b/hel/recv-media.nix index 5a9a8505..717a9072 100644 --- a/hel/recv-media.nix +++ b/hel/recv-media.nix | |||
@@ -36,7 +36,7 @@ writeScriptBin "recv-media" '' | |||
36 | ${if notifyUser == null then "" else "#"}exit 0 | 36 | ${if notifyUser == null then "" else "#"}exit 0 |
37 | 37 | ||
38 | ( | 38 | ( |
39 | summary=$(${if showTitle then ''ffmpeg -i "''${target}" -f ffmetadata pipe:1 2>/dev/null | sed -r '/^title=/!d; s/^title=//''' else ''""'' fi) | 39 | summary=$(${if showTitle then ''ffmpeg -i "''${target}" -f ffmetadata pipe:1 2>/dev/null | sed -r '/^title=/!d; s/^title=//' '' else ''""'' fi) |
40 | [[ -z "''${summary}" ]] && summary=$(basename "$1") | 40 | [[ -z "''${summary}" ]] && summary=$(basename "$1") |
41 | printf "%s\n%s\n" "''${summary}" "" | notify-${notifyUser} -a recv-media || true | 41 | printf "%s\n%s\n" "''${summary}" "" | notify-${notifyUser} -a recv-media || true |
42 | ) || true | 42 | ) || true |