hyprpicker/src/main.cpp
Maksim a82b20e979
Add autocopy option (#13)
* Add autocopy option

* Specify autocopy requirements
2022-11-19 14:53:05 +00:00

49 lines
1.7 KiB
C++

#include <iostream>
#include "hyprpicker.hpp"
int main(int argc, char** argv, char** envp) {
g_pHyprpicker = std::make_unique<CHyprpicker>();
// parse args
// 1 - format
int currentlyParsing = 0;
for (int i = 1; i < argc; i++) {
std::string arg = argv[i];
if (currentlyParsing == 0) {
if (arg == "--format") {
currentlyParsing = 1;
continue;
} else if (arg == "--no-fancy") {
g_pHyprpicker->m_bFancyOutput = false;
} else if (arg == "--autocopy") {
g_pHyprpicker->m_bAutoCopy = true;
} else {
std::cout << "Hyprpicker usage: hyprpicker [arg [...]].\n\nArguments:\n" <<
" --format [fmt] | Specifies the output format (hex, rgb)\n" <<
" --no-fancy | Disables the \"fancy\" (aka. colored) outputting\n" <<
" --autocopy | Automatically copies the output to the clipboard (requires wl-clipboard)\n" <<
" --help | Show this help message\n";
exit(1);
}
} else if (currentlyParsing == 1) {
if (arg == "hex") g_pHyprpicker->m_bSelectedOutputMode = OUTPUT_HEX;
else if (arg == "rgb") g_pHyprpicker->m_bSelectedOutputMode = OUTPUT_RGB;
else {
Debug::log(NONE, "Unrecognized format %s", arg.c_str());
exit(1);
}
currentlyParsing = 0;
continue;
}
}
if (!isatty(fileno(stdout)) || getenv("NO_COLOR"))
g_pHyprpicker->m_bFancyOutput = false;
g_pHyprpicker->init();
return 0;
}