summaryrefslogtreecommitdiffstats
path: root/.dmenu/open.sh
blob: a9b9da66ccb1466c158a47afb650ed1f251ceb0b (plain)
1
2
3
4
5
6
#! /bin/bash
. $HOME/.dmenu/dmenurc
FILE=$(find ~ -path "$HOME/.*" -prune -o -path "*.git" -prune -o -mtime -7 -type f -printf '%TY-%Tm-%Td %TT\t%p\n' | sort -r | cut -f2 | cut -d/ -f4- | $DMENU -p Open)
if [ -n "${FILE}" ]; then
    xdg-open $HOME/$FILE
fi