blob: c4c306e955bf4399a995e99cb8cfefeff966bee9 (
plain)
1
2
3
4
5
|
#!/bin/bash
DOWNLOAD_DIR="$HOME/Downloads"
PDF=$(ls -t $DOWNLOAD_DIR/*.pdf)
TARGET=$(echo "${PDF//"$DOWNLOAD_DIR/"/}" | dmenu -i -p "Open File:")
[[ -n $TARGET ]] && zathura "$DOWNLOAD_DIR/$TARGET" &
|