blob: 7bd28242e543792bbcbad328c50f7dfce83248ff (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
DIR="$1"
EDITOR=/usr/bin/nvim
if [[ ! -d "$DIR" ]]; then
/usr/bin/urxvt -geometry 160x48 -e sh -c "/usr/bin/yazi"
else
/usr/bin/urxvt -geometry 160x48 -e sh -c "/usr/bin/yazi ${DIR}"
fi
|