mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 14:57:52 +00:00
Optional daemon-mode for qbittorrent-nox
This commit is contained in:
parent
820d94e014
commit
1811ec6cab
@ -8,7 +8,7 @@ qBittorrent\-nox \- a command line Bittorrent client written in C++ / Qt4
|
|||||||
|
|
||||||
.SH "SYNOPSIS"
|
.SH "SYNOPSIS"
|
||||||
|
|
||||||
\fBqbittorrent\-nox\fR [\-\-webui-port=x] [TORRENT_FILE | URL]...
|
\fBqbittorrent\-nox\fR [\-\-d|\-\-daemon] [\-\-webui-port=x] [TORRENT_FILE | URL]...
|
||||||
|
|
||||||
\fBqbittorrent\-nox\fR \-\-help
|
\fBqbittorrent\-nox\fR \-\-help
|
||||||
|
|
||||||
|
16
src/main.cpp
16
src/main.cpp
@ -74,6 +74,8 @@ public:
|
|||||||
std::cout << '\t' << prg_name << " --version: " << qPrintable(tr("displays program version")) << std::endl;
|
std::cout << '\t' << prg_name << " --version: " << qPrintable(tr("displays program version")) << std::endl;
|
||||||
#ifndef DISABLE_GUI
|
#ifndef DISABLE_GUI
|
||||||
std::cout << '\t' << prg_name << " --no-splash: " << qPrintable(tr("disable splash screen")) << std::endl;
|
std::cout << '\t' << prg_name << " --no-splash: " << qPrintable(tr("disable splash screen")) << std::endl;
|
||||||
|
#else
|
||||||
|
std::cout << '\t' << prg_name << " -d | --daemon: " << qPrintable(tr("run in daemon-mode (background)")) << std::endl;
|
||||||
#endif
|
#endif
|
||||||
std::cout << '\t' << prg_name << " --help: " << qPrintable(tr("displays this help message")) << std::endl;
|
std::cout << '\t' << prg_name << " --help: " << qPrintable(tr("displays this help message")) << std::endl;
|
||||||
std::cout << '\t' << prg_name << " --webui-port=x: " << qPrintable(tr("changes the webui port (current: %1)").arg(QString::number(Preferences().getWebUiPort()))) << std::endl;
|
std::cout << '\t' << prg_name << " --webui-port=x: " << qPrintable(tr("changes the webui port (current: %1)").arg(QString::number(Preferences().getWebUiPort()))) << std::endl;
|
||||||
@ -158,6 +160,20 @@ int main(int argc, char *argv[]) {
|
|||||||
// Create Application
|
// Create Application
|
||||||
QString uid = misc::getUserIDString();
|
QString uid = misc::getUserIDString();
|
||||||
#ifdef DISABLE_GUI
|
#ifdef DISABLE_GUI
|
||||||
|
bool becomedaemon = false;
|
||||||
|
for(int i=1; i<argc; i++) {
|
||||||
|
if(strcmp(argv[i], "-d") == 0 || strcmp(argv[i], "--daemon") == 0) {
|
||||||
|
becomedaemon = true;
|
||||||
|
argc--;
|
||||||
|
for(int j=i; j<argc; j++) {
|
||||||
|
argv[j] = argv[j+1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(becomedaemon && daemon(1, 0) != 0) {
|
||||||
|
std::cerr << "Something went wrong while transforming into a daemon, exiting...";
|
||||||
|
return EXIT_FAILURE;
|
||||||
|
}
|
||||||
QtSingleCoreApplication app("qBittorrent-"+uid, argc, argv);
|
QtSingleCoreApplication app("qBittorrent-"+uid, argc, argv);
|
||||||
#else
|
#else
|
||||||
SessionApplication app("qBittorrent-"+uid, argc, argv);
|
SessionApplication app("qBittorrent-"+uid, argc, argv);
|
||||||
|
Loading…
Reference in New Issue
Block a user