mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
943fd1aaec
When xrm was disabled, main.cpp was missing the complete defintion of connection from connection.hpp, which was included xresources.hpp when xrm was enabled.
163 lines
5.8 KiB
C++
163 lines
5.8 KiB
C++
#include "components/bar.hpp"
|
|
#include "components/command_line.hpp"
|
|
#include "components/config.hpp"
|
|
#include "components/controller.hpp"
|
|
#include "components/ipc.hpp"
|
|
#include "utils/env.hpp"
|
|
#include "utils/inotify.hpp"
|
|
#include "utils/process.hpp"
|
|
#include "x11/connection.hpp"
|
|
|
|
using namespace polybar;
|
|
|
|
int main(int argc, char** argv) {
|
|
// clang-format off
|
|
const command_line::options opts{
|
|
command_line::option{"-h", "--help", "Display this help and exit"},
|
|
command_line::option{"-v", "--version", "Display build details and exit"},
|
|
command_line::option{"-l", "--log", "Set the logging verbosity (default: WARNING)", "LEVEL", {"error", "warning", "info", "trace"}},
|
|
command_line::option{"-q", "--quiet", "Be quiet (will override -l)"},
|
|
command_line::option{"-c", "--config", "Path to the configuration file", "FILE"},
|
|
command_line::option{"-r", "--reload", "Reload when the configuration has been modified"},
|
|
command_line::option{"-d", "--dump", "Print value of PARAM in bar section and exit", "PARAM"},
|
|
command_line::option{"-m", "--list-monitors", "Print list of available monitors and exit"},
|
|
command_line::option{"-w", "--print-wmname", "Print the generated WM_NAME and exit"},
|
|
command_line::option{"-s", "--stdout", "Output data to stdout instead of drawing it to the X window"},
|
|
command_line::option{"-p", "--png", "Save png snapshot to FILE after running for 3 seconds", "FILE"},
|
|
};
|
|
// clang-format on
|
|
|
|
unsigned char exit_code{EXIT_SUCCESS};
|
|
bool reload{false};
|
|
|
|
logger& logger{const_cast<decltype(logger)>(logger::make(loglevel::WARNING))};
|
|
|
|
try {
|
|
//==================================================
|
|
// Parse command line arguments
|
|
//==================================================
|
|
string scriptname{argv[0]};
|
|
vector<string> args{argv + 1, argv + argc};
|
|
|
|
command_line::parser::make_type cli{command_line::parser::make(move(scriptname), move(opts))};
|
|
cli->process_input(args);
|
|
|
|
if (cli->has("quiet")) {
|
|
logger.verbosity(loglevel::ERROR);
|
|
} else if (cli->has("log")) {
|
|
logger.verbosity(logger::parse_verbosity(cli->get("log")));
|
|
}
|
|
|
|
if (cli->has("help")) {
|
|
cli->usage();
|
|
return EXIT_SUCCESS;
|
|
} else if (cli->has("version")) {
|
|
print_build_info(version_details(args));
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
//==================================================
|
|
// Connect to X server
|
|
//==================================================
|
|
auto xcb_error = 0;
|
|
auto xcb_screen = 0;
|
|
auto xcb_connection = xcb_connect(nullptr, &xcb_screen);
|
|
|
|
if (xcb_connection == nullptr) {
|
|
throw application_error("A connection to X could not be established...");
|
|
} else if ((xcb_error = xcb_connection_has_error(xcb_connection))) {
|
|
throw application_error("X connection error... (what: " + connection::error_str(xcb_error) + ")");
|
|
}
|
|
|
|
connection& conn{connection::make(xcb_connection, xcb_screen)};
|
|
conn.ensure_event_mask(conn.root(), XCB_EVENT_MASK_PROPERTY_CHANGE);
|
|
|
|
//==================================================
|
|
// List available XRandR entries
|
|
//==================================================
|
|
if (cli->has("list-monitors")) {
|
|
for (auto&& mon : randr_util::get_monitors(conn, conn.root(), true)) {
|
|
if (WITH_XRANDR_MONITORS && mon->output == XCB_NONE) {
|
|
printf("%s: %ix%i+%i+%i (XRandR monitor)\n", mon->name.c_str(), mon->w, mon->h, mon->x, mon->y);
|
|
} else {
|
|
printf("%s: %ix%i+%i+%i\n", mon->name.c_str(), mon->w, mon->h, mon->x, mon->y);
|
|
}
|
|
}
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
//==================================================
|
|
// Load user configuration
|
|
//==================================================
|
|
string confpath;
|
|
|
|
// Make sure a bar name is passed in
|
|
if (!cli->has(0)) {
|
|
cli->usage();
|
|
return EXIT_FAILURE;
|
|
} else if (cli->has(1)) {
|
|
fprintf(stderr, "Unrecognized argument \"%s\"\n", cli->get(1).c_str());
|
|
cli->usage();
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
if (cli->has("config")) {
|
|
confpath = cli->get("config");
|
|
} else if (env_util::has("XDG_CONFIG_HOME")) {
|
|
confpath = env_util::get("XDG_CONFIG_HOME") + "/polybar/config";
|
|
} else if (env_util::has("HOME")) {
|
|
confpath = env_util::get("HOME") + "/.config/polybar/config";
|
|
} else {
|
|
throw application_error("Define configuration using --config=PATH");
|
|
}
|
|
|
|
config::make_type conf{config::make(move(confpath), cli->get(0))};
|
|
|
|
//==================================================
|
|
// Dump requested data
|
|
//==================================================
|
|
if (cli->has("dump")) {
|
|
printf("%s\n", conf.get(conf.section(), cli->get("dump")).c_str());
|
|
return EXIT_SUCCESS;
|
|
}
|
|
if (cli->has("print-wmname")) {
|
|
printf("%s\n", bar::make(true)->settings().wmname.c_str());
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
//==================================================
|
|
// Create controller and run application
|
|
//==================================================
|
|
unique_ptr<ipc> ipc{};
|
|
unique_ptr<inotify_watch> config_watch{};
|
|
|
|
if (conf.get(conf.section(), "enable-ipc", false)) {
|
|
ipc = ipc::make();
|
|
}
|
|
if (cli->has("reload")) {
|
|
config_watch = inotify_util::make_watch(conf.filepath());
|
|
}
|
|
|
|
auto ctrl = controller::make(move(ipc), move(config_watch));
|
|
|
|
if (!ctrl->run(cli->has("stdout"), cli->get("png"))) {
|
|
reload = true;
|
|
}
|
|
} catch (const exception& err) {
|
|
logger.err(err.what());
|
|
exit_code = EXIT_FAILURE;
|
|
}
|
|
|
|
logger.info("Waiting for spawned processes to end");
|
|
while (process_util::notify_childprocess()) {
|
|
;
|
|
}
|
|
|
|
if (reload) {
|
|
logger.info("Re-launching application...");
|
|
process_util::exec(move(argv[0]), move(argv));
|
|
}
|
|
|
|
logger.info("Reached end of application...");
|
|
return exit_code;
|
|
}
|