blob: 054af3fc1ab4ec6941405043a5a82a7474d74380 (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/sh
# Wrapper: log file opens to fre, then exec real libreoffice.
for arg in "$@"; do
[ -f "$arg" ] && fre --add "$(readlink -f "$arg")" 2>/dev/null
done
exec /usr/bin/libreoffice "$@"
|