mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
359cc044b2
neovim: lsp: add ansiblels chore: cleanup shebang (remove 'sh -e' pattern)
19 lines
444 B
Bash
Executable File
19 lines
444 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# You need mpv-devel, meson, ninja, pkg-config
|
|
|
|
git clone https://github.com/GhostNaN/mpvpaper
|
|
|
|
cd mpvpaper
|
|
meson build --prefix=$HOME/.local
|
|
ninja -C build install
|
|
|
|
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
|