We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bea5791 commit 9b849fcCopy full SHA for 9b849fc
config/imv/config
@@ -1,2 +1,13 @@
1
[binds]
2
-<Ctrl+p> = exec lp $imv_current_file
+
3
+# Print the current image file
4
+<Ctrl+p> = exec lp "$imv_current_file"
5
6
+# Delete the current image and quit the viewer
7
+<Ctrl+x> = exec rm "$imv_current_file"; quit
8
9
+# Delete the current image and move to the next one
10
+<Ctrl+Shift+X> = exec rm "$imv_current_file"; close
11
12
+# Rotate the currently open image by 90 degrees
13
+<Ctrl+r> = exec mogrify -rotate 90 "$imv_current_file"
migrations/1762802472.sh
@@ -0,0 +1,4 @@
+echo "Update imv config with new keybindings"
+mkdir -p ~/.config/imv
+cp $OMARCHY_PATH/config/imv/config ~/.config/imv/
0 commit comments