mirror of
https://git.davidovski.xyz/dot.git
synced 2026-09-15 01:04:20 +00:00
10 lines
179 B
Bash
Executable file
10 lines
179 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -z "$@" ]; then
|
|
mpc -f "%title%" current
|
|
else
|
|
zscroll -l 14 --before-text " " --delay 0.2 \
|
|
--update-check true "$0 current" -p " " &
|
|
fi
|
|
|
|
wait
|