1
0
Fork 0
dotfiles/.config/lf/opener

12 lines
186 B
Text
Raw Normal View History

2024-02-01 00:33:30 +01:00
#!/bin/sh
set -f
if [ "$2" ]; then
for f in "$@"; do
# shellcheck disable=2086
rifle -p0 $f
done
else
rifle -c "$XDG_CONFIG_HOME/lf/rifle.conf" -p 0 "$1"
fi