Scroll to navigation

GBSPLAYRC(5) Gameboy sound player GBSPLAYRC(5)

NAME

gbsplayrc - Gameboy sound player configuration file

DESCRIPTION

This manpage describes the configuration file format of gbsplay(1).

SYNTAX

A configuration file is a text file that may contain options for gbsplay(1) as well as comments.

Comments are introduced by a hash mark ("#"). A comment continues to the end of the line.

Whitespace, including empty lines, is ignored.

An option is set by giving the option name, followed by an equal sign ("=") and the option value.

Option value types

Option values can be of these types:

An integer number in decimal. 0 is considered false, everything else is true.
A string to select the endianness:
native endian
little endian
big endian

For backwards compatibility you can also use just the first character of each option ("n", "l" or "b").
A string to select the output high-pass filter:
Gameboy Classic
Gameboy Color
no filter
An integer number in decimal.
A string to select the loop mode:
no looping
loop over selected subsongs
loop a single subsong

See LOOP MODES in gbsplay(1) for details.
A string to select the play mode:
play subsongs in linear order
play subsongs in random order where every subsong can be played multiple times
play subsongs in random order where every subsong is played only once
The name of an output plugin. Run `gbsplay -o list' to get a list of all available output plugins.

OPTIONS

Set the output endianness.
Set the fadeout time in seconds. Instead of cutting the subsong off hard, do a soft fadeout.
Set the output high-pass filter.
Set the loop mode to "range" when enabled. Set the loop mode to "none" when disabled. Deprecated in favor of the loop_mode option.
Set the desired loop mode.
Set the sound output plugin.
Set the desired play mode.
Set the samplerate in Hz.
Set the refresh delay in milliseconds. Larger values will lower CPU usage, but things as subsong changes, fadeouts, reactions to keypresses and the on-screen display will be delayed.
Set the silence timeout in seconds. When a subsong contains silence for the given time, the player will skip to the next subsong.
Set the subsong gap in seconds. Before playing the next subsong after the subsong timeout, subsong_gap seconds of silence will be played.
Set the subsong timeout in seconds. When a subsong has been played for the given time, the player will skip to the next subsong. A timeout of 0 seconds disables automatic subsong changes.
Set the verbosity level (default: 3). A value of 0 means no messages on stdout.

FILES

/etc/gbsplayrc
Default location of the global configuration file.
~/.gbsplayrc
User configuration file.

BUGS

If you encounter bugs, please report them via https://github.com/mmitch/gbsplay/issues

EXAMPLE

A simple configuration file might look like this:

# select NAS output plugin and play subsongs for at most 5 minutes
output_plugin = nas
subsong_timeout = 300

AUTHORS

gbsplay was written by Tobias Diedrich <ranma+gbsplay@tdiedrich.de> (with contributions from others, see README.md).

COPYRIGHT

gbsplay is licensed under GNU GPL v1 or, at your option, any later version.

SEE ALSO

gbsplay(1), gbsinfo(1)

0.0.99ish Tobias Diedrich