mirror of
https://github.com/hyprwm/hyprpicker.git
synced 2024-11-17 00:25:57 +01:00
a82b20e979
* Add autocopy option * Specify autocopy requirements
49 lines
1.7 KiB
C++
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;
|
|
}
|