From 60d1d89d0479ab7d0ee9ba7ad797e93c16875586 Mon Sep 17 00:00:00 2001 From: Daniel Fainberg Date: Mon, 6 Jul 2026 20:46:35 +0200 Subject: [PATCH] fix(media): rebind imv open-in-editor from `g` to `e` `g` is reserved by imv's `gg` first-image chord. --- modules/media.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/media.nix b/modules/media.nix index 36fc5c7..726cd31 100644 --- a/modules/media.nix +++ b/modules/media.nix @@ -36,7 +36,7 @@ in "r" = ''exec magick "$imv_current_file" -rotate 90 "$imv_current_file"''; "" = ''exec magick "$imv_current_file" -rotate -90 "$imv_current_file"''; "f" = ''exec magick "$imv_current_file" -flop "$imv_current_file"''; - "g" = ''exec gimp "$imv_current_file"''; + "e" = ''exec gimp "$imv_current_file"''; # edit; `g` reserved by imv's gg chord "i" = ''exec notify-send "File info" "$(mediainfo "$imv_current_file")"''; }; }; @@ -55,6 +55,6 @@ in imagemagick # `magick`: rotate/flip binds mediainfo # `i` info bind libnotify # notify-send client (daemon = mako, in home.nix) - gimp # `g` open-in-editor bind + gimp # `e` open-in-editor bind ]; }