distribution/packages/jelos/sources/scripts/start_mplayer.sh
fewtarius fa5359d937
* Complete work for the Audio reset feature (Danger Zone).
* Make fbwidth and fbheight available as a function, and ensure it supports
  rotated displays.
2023-07-29 00:44:10 +00:00

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