fa5359d937
* Make fbwidth and fbheight available as a function, and ensure it supports rotated displays.
24 lines
504 B
Bash
Executable file
24 lines
504 B
Bash
Executable file
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2020-present redwolftech
|
|
# Copyright (C) 2020-present Fewtarius
|
|
|
|
. /etc/profile
|
|
jslisten set "mpv"
|
|
|
|
FBWIDTH="$(fbwidth)"
|
|
FBHEIGHT="$(fbheight)"
|
|
|
|
ASPECT=$(printf "%.2f" $(echo "(${FBWIDTH} / ${FBHEIGHT})" | bc -l))
|
|
|
|
case ${ASPECT} in
|
|
1.*)
|
|
RES="${FBWIDTH}x${FBHEIGHT}"
|
|
;;
|
|
0.*)
|
|
RES="${FBHEIGHT}x${FBWIDTH}"
|
|
;;
|
|
esac
|
|
|
|
/usr/bin/mpv --fullscreen --geometry=${RES} --hwdec=auto --input-ipc-server=/tmp/mpvsocket "${1}"
|
|
exit 0
|