about summary refs log tree commit diff
path: root/tools/eaglemode
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eaglemode')
-rw-r--r--tools/eaglemode/commands/emacsclient.nix7
-rw-r--r--tools/eaglemode/default.nix5
2 files changed, 11 insertions, 1 deletions
diff --git a/tools/eaglemode/commands/emacsclient.nix b/tools/eaglemode/commands/emacsclient.nix
index d5aacd137fdc..bac3674120ee 100644
--- a/tools/eaglemode/commands/emacsclient.nix
+++ b/tools/eaglemode/commands/emacsclient.nix
@@ -1,8 +1,13 @@
 { depot, pkgs, ... }:
 
-depot.tools.eaglemode.mkCommand {
+let
+  em = depot.tools.eaglemode;
+  icon = em.mkTGA "emacs" "${pkgs.emacs}/share/icons/hicolor/128x128/apps/emacs.png";
+in
+em.mkCommand {
   name = "Emacsclient";
   hotkey = "Ctrl+E";
+  icon = "${icon}";
 
   description = ''
     Open target in Emacsclient.
diff --git a/tools/eaglemode/default.nix b/tools/eaglemode/default.nix
index eade62c02898..0b0c0caa8ba8 100644
--- a/tools/eaglemode/default.nix
+++ b/tools/eaglemode/default.nix
@@ -63,6 +63,11 @@ rec {
     '')
   );
 
+  # mkTGA converts the given image to a TGA image.
+  mkTGA = name: path: pkgs.runCommand "${name}.tga" { } ''
+    ${pkgs.imagemagick}/bin/convert ${path} $out
+  '';
+
   # etcDir creates a directory layout suitable for use in the EM_USER_CONFIG_DIR
   # environment variable.
   #