zathura: correctly read in $FILE in keybindings and add movepdf

This commit is contained in:
Alexander Bocken 2024-02-22 16:46:38 +01:00
parent 35d8536fcf
commit dfbd109c6e
Signed by: Alexander
GPG Key ID: 1D237BE83F9B05E8
2 changed files with 11 additions and 1 deletions

View File

@ -14,4 +14,5 @@ map i recolor
map p print
map g goto top
map <C-s> exec zathura_backward_search.sh
map <A-Return> exec openfilebrowser $FILE
map <A-Return> exec "openfilebrowser $FILE"
map <C-h> exec "movepdf $FILE"

9
.local/bin/tools/movepdf Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
file="$1"
dest="$(find "$HOME" -maxdepth 5 -type d -not -path "$HOME/.*" | dmenu -i -p 'move to folder:')"
if ! [ -d "$dest" ]; then
mkdir -p "$dest"
fi
echo $dest
echo $file
mv "$file" "$dest"