summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <pngwjpgh@users.noreply.github.com>2016-07-21 19:32:41 +0200
committerGregor Kleen <pngwjpgh@users.noreply.github.com>2016-07-21 19:32:41 +0200
commit481ef1de64b2f12321e4c3af8237f1856b90ede1 (patch)
treef4afea45f9eb9c387817dcc5871ffba8c9056640
parentced211be3c212cafc6f3b35141efe351826ab4d9 (diff)
downloadnixos-481ef1de64b2f12321e4c3af8237f1856b90ede1.tar
nixos-481ef1de64b2f12321e4c3af8237f1856b90ede1.tar.gz
nixos-481ef1de64b2f12321e4c3af8237f1856b90ede1.tar.bz2
nixos-481ef1de64b2f12321e4c3af8237f1856b90ede1.tar.xz
nixos-481ef1de64b2f12321e4c3af8237f1856b90ede1.zip
more generic glob
-rw-r--r--hel.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/hel.nix b/hel.nix
index 276c3086..247b5ec3 100644
--- a/hel.nix
+++ b/hel.nix
@@ -257,7 +257,7 @@
257 source = pkgs.writeScript "notify-gkleen" '' 257 source = pkgs.writeScript "notify-gkleen" ''
258 #!${pkgs.zsh}/bin/zsh 258 #!${pkgs.zsh}/bin/zsh
259 259
260 DBUS_ADDRESS=`grep "DBUS_SESSION_BUS_ADDRESS=" /home/gkleen/.dbus/session-bus/${"*"}-0 | cut -d "=" -f 2-` 260 DBUS_ADDRESS=`grep "DBUS_SESSION_BUS_ADDRESS=" /home/gkleen/.dbus/session-bus/${"*"} | cut -d "=" -f 2-`
261 exec env DBUS_SESSION_BUS_ADDRESS=''${DBUS_ADDRESS} ${pkgs.libnotify}/bin/notify-send ''${(q)@} 261 exec env DBUS_SESSION_BUS_ADDRESS=''${DBUS_ADDRESS} ${pkgs.libnotify}/bin/notify-send ''${(q)@}
262 ''; 262 '';
263 } 263 }