FollieHiyuki-dotfiles/setup/mpvpaper.sh
2021-10-17 21:47:47 +07:00

25 lines
528 B
Bash
Executable File

#!/bin/sh
# You need mpv-devel, meson, ninja, pkg-config
git clone https://github.com/GhostNaN/mpvpaper
cd mpvpaper || exit
meson build --prefix=/usr
if command -v doas >/dev/null
then
doas -- ninja -C build install
else
sudo ninja -C build install
fi
cd ..
# Control the wallpaper with mpv input-ipc-server:
# mpvpaper -f -o "input-ipc-server=/tmp/mpv-socket" DP-1 /path/to/video
# echo 'cycle pause' | socat - /tmp/mpv-socket
# Simply set the wallpaper
# mpvpaper -f -o "--no-audio --loop-file" DP-1 /path/to/video