1
0
Fork 0
dotfiles/.local/bin/opener
2024-02-01 10:50:28 +01:00

11 lines
223 B
Bash
Executable file

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