dotfiles/.config/polybar/scripts/now-playing-options.cfg
2025-03-10 10:30:45 -05:00

30 lines
776 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
#
# Set necessary values for script here
#
# Set the maximum length of song title
title_maxlen=25
# Set the maximum length of artist
artist_maxlen=20
# Include album in output or just artist and title? (valid options: true/false)
show_album=false
# Set the maximum length of album title (if enabled, otherwise this does nothing)
album_maxlen=25
# Show icons denoting the start of the album and artist strings? (valid options: true/false)
show_aa_icons=false
# What to use as the separator between strings (ex: ALBUM ARTIST TITLE)
separator=""
# How long to wait in seconds before getting the status again (can help avoid rate limiting)
wait_time=1
# A comma-separated list of players to ignore (if they are being problematic)
ignored_players=""