/usr/share/anyremote/cfg-data/Server-mode/foobnix.cfg is in anyremote-data 6.3.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | %
% anyremote configuration file for foobnix management (Server-mode)
%
% STATUS stable
% XTEST no
% SOUND mixer
% ENV no
% DEF_PLAYER
% ALL_IN_ONE
% TODO http://code.google.com/p/foobnix/issues/detail?id=422
GuiAppName=foobnix
GuiAppBinary=foobnix
GuiAppRun=echo 'P=`ps -ef|grep foobnix|grep python|grep -v grep|grep -v anyremote|grep -v edit`; if [ "x$P" = "x" ]; then echo NOK; else echo OK; fi'|sh -s
GuiAppIcon=foobnix.png
GuiAppType=Application
GuiAppProtocols=Server
GuiAppDesc=
[Protocol]=Server
(Init)=\
Include($(CfgDir)/Utils/aliases-server.cfg);\
Macro(SETUP_DEFAULT_MIXER);\
Macro(TEST_QDBUS);\
Make(var,player_name,by_value,Foobnix);\
Include($(CfgDir)/Utils/aliases-server-player.cfg);
(Connect)=Make(mode,foobnix);
[Mode]=foobnix : default_player
% EnterMode, Volume control and 0-9,*,# assignments by Utils/aliases-server-player.cfg
PLAY=\
Exec(foobnix --play);\
Macro(FOOBNIX_START_TIMER):
RWD=\
Exec(qdbus org.mpris.MediaPlayer2.foobnix /Player org.freedesktop.MediaPlayer.SeekDown);
FF=\
Exec(qdbus org.mpris.MediaPlayer2.foobnix /Player org.freedesktop.MediaPlayer.SeekUp);
PREV=\
Exec(foobnix --prev);
STOP=\
Macro(FOOBNIX_TIMER_CANCEL);\
Exec(foobnix --pause);
NEXT=\
Exec(foobnix --next);
PAUSE=\
Exec(foobnix --pause);
RUN_IF_NEED=\
Exec(P=`ps -ef|grep foobnix|grep python|grep -v grep|grep -v anyremote|grep -v edit`; \
if [ "x$P" = "x" ]; then foobnix & fi);\
Exec($(CfgDir)/Utils/run-or-switch-to.sh -switch foobnix);
RUN_OR_QUIT=\
Macro(FOOBNIX_TIMER_CANCEL);\
Exec(P=`ps -ef|grep foobnix|grep python|grep -v grep|grep -v anyremote|grep -v edit`;\
if [ "x$P" = "x" ]; then foobnix & else pkill foobnix; fi);
APP_QUIT=\
Macro(FOOBNIX_TIMER_CANCEL);\
Exec(pkill foobnix)
FOOBNIX_TITLE=\
ExecAndSet(title,foobnix --now-playing 2> /dev/null | grep -v "Other copy of player is run");
FOOBNIX_START_TIMER=\
Macro(FOOBNIX_TITLE);\
Timer(FOOBNIX_TITLE,$(UpdateTimeout),0);
FOOBNIX_TIMER_CANCEL=\
Timer(FOOBNIX_TITLE,cancel);\
Set(title,);\
Set(status,);
[ModeEnd]
[End]
|