fix(media): rebind imv open-in-editor from g to e

`g` is reserved by imv's `gg` first-image chord.
This commit is contained in:
2026-07-06 20:46:35 +02:00
parent 0731e78003
commit 60d1d89d04
+2 -2
View File
@@ -36,7 +36,7 @@ in
"r" = ''exec magick "$imv_current_file" -rotate 90 "$imv_current_file"'';
"<Shift+R>" = ''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
];
}