Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gimmix(1) [debian man page]

Gimmix(1)						      General Commands Manual							 Gimmix(1)

NAME
Gimmix - a graphical music player daemon (MPD) client SYNOPSIS
gimmix DESCRIPTION
This manual page documents briefly the gimmix command. gimmix is a graphical music player daemon (MPD) client written in C using GTK+2. It's very simple and easy to use, yet offers many fea- tures to make your audio experience a pleasant one. CONFIGURATION
Default configuration file location is $HOME/.gimmixrc. List of valid configuration options : mpd_hostname (mandatory) hostname mpd_port (mandatory) port number mpd_port (mandatory) mpd password. Leave blank for no password enable_systray (mandatory) Enable/Disable the system tray icon. Enable is true, Disable is false. enable_notification (mandatory) Enable/Disable the notification tooltip. Enable is true, Disable is false. music_directory (mandatory) The absolute path to the directory where your music is stored. This is same as the one you specified in your mpd.conf. This setting is required for the tag editor to function properly. play_on_add If true, songs will automatically be played when you add them to the playlist. If false, songs will just be added to the playlist. Default value is false. stop_on_exit If true, gimmix will stop playing when user quits gimmix. If false, gimmix will not stop playing when user quits gimmix. Default value is false. enable_search If true, search mode is enabled in library browser. If false, search mode will be disabled. Default value is true. update_on_startup If true, gimmix will update the mpd database everytime on startup. If false, gimmix won't update the mpd database on startup. Default value is false. full_view_mode If true, the playlist will be expanded by default when gimmix starts. If false, gimmix will start in compact mode (This is automati- cally set by gimmix, so, its not necessary to set this value always) window_xpos and window_ypos x and y co-ordinates representing window position of gimmix (These values are automatically set, so, its not necessary to set these values) window_width and window_height These represt the window geometry of gimmix (These values are automatically set, so, its not necessary to set these values) coverart_enable Enable/disable amazon cover art plugin coverart_location Amazon's server location to fetch covers from. Values : com | co.uk | jp | fr | ca | de SEE ALSO
Website: http://gimmix.berlios.de AUTHOR
Gimmix was written by Priyank Gosalia <priyankmg@gmail.com>. This manual page was written by Vincent Legout <vincent@legout.info>, for the Debian project (but may be used by others). July 20, 2008 Gimmix(1)

Check Out this Related Man Page

Audio::MPD::Playlist(3pm)				User Contributed Perl Documentation				 Audio::MPD::Playlist(3pm)

NAME
Audio::MPD::Playlist - class to mess MPD's playlist VERSION
version 1.120610 SYNOPSIS
$mpd->playlist->shuffle; # and lots of other methods DESCRIPTION
Audio::MPD::Playlist is a class meant to access & update MPD's playlist. Note that you're not supposed to call the constructor yourself, an Audio::MPD::Playlist is automatically created for you during the creation of an Audio::MPD object - it can then be used with the "playlist()" accessor. RETRIEVING INFORMATION
as_items my @items = $pl->as_items; Return an array of Audio::MPD::Common::Item::Songs, one for each of the songs in the current playlist. items_changed_since my @items = $pl->items_changed_since( $plversion ); Return a list with all the songs (as Audio::MPD::Common::Item::Song objects) added to the playlist since playlist $plversion. ADDING
/ REMOVING SONGS add $pl->add( $path [, $path [...] ] ); Add the songs identified by $path (relative to MPD's music directory) to the current playlist. No return value. delete $pl->delete( $song [, $song [...] ] ); Remove the specified $song numbers (starting from 0) from the current playlist. No return value. deleteid $pl->deleteid( $songid [, $songid [...] ] ); Remove the specified $songids (as assigned by mpd when inserted in playlist) from the current playlist. No return value. clear $pl->clear; Remove all the songs from the current playlist. No return value. crop $pl->crop; Remove all of the songs from the current playlist except the song currently playing. CHANGING PLAYLIST ORDER
shuffle $pl->shuffle; Shuffle the current playlist. No return value. swap $pl->swap( $song1, $song2 ); Swap positions of song number $song1 and $song2 in the current playlist. No return value. swapid $pl->swapid( $songid1, $songid2 ); Swap the postions of song ID $songid1 with song ID $songid2 in the current playlist. No return value. move $pl->move( $song, $newpos ); Move song number $song to the position $newpos. No return value. moveid $pl->moveid( $songid, $newpos ); Move song ID $songid to the position $newpos. No return value. MANAGING PLAYLISTS
load $pl->load( $playlist ); Load list of songs from specified $playlist file. No return value. save $pl->save( $playlist ); Save the current playlist to a file called $playlist in MPD's playlist directory. No return value. rm $pl->rm( $playlist ); Delete playlist named $playlist from MPD's playlist directory. No return value. AUTHOR
Jerome Quelin COPYRIGHT AND LICENSE
This software is copyright (c) 2007 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-03-01 Audio::MPD::Playlist(3pm)
Man Page