Inspiration from Cmus Control
Control ncmpcpp with Media Keys ⏪
- At least macOS 10.8.
cmake
to build it.- Since Ncmpcpp Control doesn't have the behavior of changing any foreign processes it's highly recommended to deactivate the Remote Control Daemon.
- ncmpcpp installed. ;)
- You need to install cmake:
brew install cmake
- Run
make install
to compile Control Daemon and installncmpcppcontrold
under/usr/local/bin
path. A launchd.plist file namedat.fox21.ncmpcppcontrold.plist
will be created under~/Library/LaunchAgents
to start Control Daemon automatically on login.
If you just want to compile Control Daemon without installing run make
. The binary will be created at build/release/bin/ncmpcppcontrold
.
Just run make uninstall
. Doing so
ncmpcppcontrold
will be unloaded vialaunchctl
;~/Library/LaunchAgents/at.fox21.ncmpcppcontrold.plist
will be removed;/usr/local/bin/ncmpcppcontrold
will be removed.
After a successful manual installation the ncmpcppcontrold
is loaded/started automatically with launchctl
. You can unload the daemon manually:
make unload
Or load it manually:
make load
After changing the source code you might want to re-build the binary and re-install it.
make unload
make -C build/release
make install
Copyright (C) 2015 Revanth Revoori http://rrevanth.github.io
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.