diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2024-04-28 13:11:30 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2024-04-28 13:11:30 +0000 |
commit | 3cb8b81a00ff60b4fbce57f5aa788faf96ad31da (patch) | |
tree | 2d4061211c18c19934cbcd4d60ebda0abbe165a9 | |
parent | 568d423fd328b9373048688259f4b5ff251abd20 (diff) | |
download | dotfiles-3cb8b81a00ff60b4fbce57f5aa788faf96ad31da.tar dotfiles-3cb8b81a00ff60b4fbce57f5aa788faf96ad31da.tar.gz dotfiles-3cb8b81a00ff60b4fbce57f5aa788faf96ad31da.tar.bz2 dotfiles-3cb8b81a00ff60b4fbce57f5aa788faf96ad31da.tar.lz dotfiles-3cb8b81a00ff60b4fbce57f5aa788faf96ad31da.tar.xz dotfiles-3cb8b81a00ff60b4fbce57f5aa788faf96ad31da.tar.zst dotfiles-3cb8b81a00ff60b4fbce57f5aa788faf96ad31da.zip |
add imv config
-rw-r--r-- | .config/imv/config | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/.config/imv/config b/.config/imv/config new file mode 100644 index 0000000..4ea9bf7 --- /dev/null +++ b/.config/imv/config @@ -0,0 +1,64 @@ +# Default config for imv + +[options] + +# Suppress built-in key bindings, and specify them explicitly in this +# config file. +suppress_default_binds = true + +[aliases] +# Define aliases here. Any arguments passed to an alias are appended to the +# command. +# alias = command to run + +[binds] +# Define some key bindings +q = quit +y = exec echo working! + +# Image navigation +<Left> = prev +<bracketleft> = prev +<Right> = next +<bracketright> = next +gg = goto 1 +<Shift+G> = goto -1 + +# Panning +j = pan 0 -50 +k = pan 0 50 +h = pan 50 0 +l = pan -50 0 + +# Zooming +<Up> = zoom 1 +<Shift+plus> = zoom 1 +i = zoom 1 +<Down> = zoom -1 +<minus> = zoom -1 +o = zoom -1 + +# Rotate Clockwise by 90 degrees +<Ctrl+r> = rotate by 90 + +# Other commands +x = close +f = fullscreen +d = overlay +p = exec echo $imv_current_file +c = center +s = scaling next +<Shift+S> = upscaling next +a = zoom actual +r = reset + +# Gif playback +<period> = next_frame +<space> = toggle_playing + +# Slideshow control +t = slideshow +1 +<Shift+T> = slideshow -1 + +# Custom +<Meta+c> = exec wl-copy $imv_current_file |