dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 740f3940b5e6b8d07cd77722b54a30cad8533d86
parent faca96678dc0124fef0ed2f20741b0a2ded4cf91
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Fri,  4 Dec 2020 11:36:13 +0100

mpvq: log to a file

Former-commit-id: 4145e987475a06fe617eb3fde2b847e24fab9095
Diffstat:
Mscripts/mpvq | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/mpvq b/scripts/mpvq @@ -12,7 +12,7 @@ play() { else terminal-notifier -title "Playing video" -message "MPV is launching..." -group "mpv" 1>/dev/null 2>&1 # This converts FIFO to a domain socket - mpv --idle=yes --volume=50 --no-terminal --x11-name=MPV-Q --input-ipc-server="$HOME"/.cache/mpv/input --player-operation-mode=pseudo-gui "$1" & + mpv --idle=yes --volume=50 --no-terminal --x11-name=MPV-Q --input-ipc-server="$HOME"/.cache/mpv/input --log-file="$HOME"/.cache/mpv/mpv.log --player-operation-mode=pseudo-gui "$1" & fi }