zathura: correctly read in $FILE in keybindings and add movepdf
This commit is contained in:
9
.local/bin/tools/movepdf
Executable file
9
.local/bin/tools/movepdf
Executable 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"
|
Reference in New Issue
Block a user