1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-04-11 09:33:31 +02:00

initial import

This commit is contained in:
root
2010-02-09 21:25:29 +01:00
commit b2719dc011
1080 changed files with 41656 additions and 0 deletions

View File

@@ -0,0 +1 @@
MD5 00c18ad2d41fdf89824926c4c34eb6b3 xmmsctrl-1.7.tar.gz 8667

View File

@@ -0,0 +1 @@
MD5 0774f3e61cfc89c1fd3f0526c48b35db xmmsctrl-1.8.tar.gz 14043

View File

@@ -0,0 +1 @@
MD5 7da9cb73daeeec99bfdaa93dd2862ea6 xmmsctrl-1.9.tar.gz 14336

View File

@@ -0,0 +1,15 @@
diff -Naur xmmsctrl-1.8.orig/xmmsctrl.c xmmsctrl-1.8/xmmsctrl.c
--- xmmsctrl-1.8.orig/xmmsctrl.c 2004-04-02 04:55:06.000000000 -0800
+++ xmmsctrl-1.8/xmmsctrl.c 2004-11-04 15:18:37.487096112 -0800
@@ -135,6 +135,11 @@
"print this help message."
},
{
+ "jump" ,
+ xmms_remote_show_jump_box ,
+ "open the xmms jump to file box"
+ },
+ {
"next" ,
xmms_remote_playlist_next ,
"xmms next song command, go to the next song."

View File

@@ -0,0 +1,15 @@
diff -ur xmmsctrl-1.6/xmmsctrl.c ../xmmsctrl-1.6/xmmsctrl.c
--- xmmsctrl-1.6/xmmsctrl.c Wed Nov 21 10:45:56 2001
+++ ../xmmsctrl-1.6/xmmsctrl.c Sat Jan 5 08:14:17 2002
@@ -101,6 +101,11 @@
"help",
print_help ,
"print this help message"
+ },
+ {
+ "jump" ,
+ xmms_remote_show_jump_box ,
+ "open the xmms jump to file box"
},
{
"next" ,

View File

@@ -0,0 +1,38 @@
# $Header: /var/cvsroot/gentoo-x86/media-sound/xmmsctrl/files/xmmsctrl.bash-completion,v 1.1 2004/11/04 23:22:33 eradicator Exp $
# xmmsctrl completion
_xmmsctrl()
{
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="launch not cur eject getlength getpos gettime getvol help jump \
next pause play playlist playfiles pref prev previous remove repeat \
shuffle stop title quit --help equalizer main play_list paused playing \
is_equalizer is_main is_play_list is_stream running session dir time \
track vol"
if [ ${COMP_CWORD} -eq 1 ] ; then
COMPREPLY=($(compgen -W "${opts}" -- "${cur}"))
return 0
fi
case "${prev}" in
equalizer|main|play_list)
COMPREPLY=($(compgen -W "0 1" -- "${cur}"))
;;
dir)
COMPREPLY=($(compgen -A directory -- "${cur}"))
;;
not)
COMPREPLY=($(compgen -W "${opts/not}" -- "${cur}"))
;;
*)
COMPREPLY=()
;;
esac
}
complete -F _xmmsctrl xmmsctrl
# vim: set ft=sh tw=80 sw=4 et :