diff options
author | Vincent Ambo <tazjin@tvl.su> | 2024-08-28T11·53+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2024-08-30T18·05+0000 |
commit | 06f03b4518360539c0fbee00b9b9750b0710b6bd (patch) | |
tree | 98e0f67c258016addea339819eefc90c9aec18b6 /tools/eaglemode/commands/emacsclient.nix | |
parent | 91e76a90a0adcc143cab33aeb343d4f6b0662a66 (diff) |
feat(eaglemode/emacsclient): use actual Emacs icon for command r/8621
Adds a new function that converts anything to a TGA image (imagemagick really is magic), with which arbitrary icons can be converted. This is demoed with the emacsclient command, which just takes the icon out of the Emacs package tree. Change-Id: I771bafed7b07a37c847bd07db986228b9fda60a0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12374 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: azahi <azat@bahawi.net> Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tools/eaglemode/commands/emacsclient.nix')
-rw-r--r-- | tools/eaglemode/commands/emacsclient.nix | 7 |
1 files changed, 6 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. |