mirror of
https://github.com/hyprwm/hyprpicker.git
synced 2024-11-17 08:25:58 +01:00
82 lines
3.8 KiB
C++
82 lines
3.8 KiB
C++
#include <strings.h>
|
|
|
|
#include <iostream>
|
|
|
|
#include "hyprpicker.hpp"
|
|
|
|
static void help(void) {
|
|
std::cout << "Hyprpicker usage: hyprpicker [arg [...]].\n\nArguments:\n"
|
|
<< " -a | --autocopy | Automatically copies the output to the clipboard (requires wl-clipboard)\n"
|
|
<< " -f | --format=fmt | Specifies the output format (cmyk, hex, rgb, hsl, hsv)\n"
|
|
<< " -n | --no-fancy | Disables the \"fancy\" (aka. colored) outputting\n"
|
|
<< " -h | --help | Show this help message\n"
|
|
<< " -r | --render-inactive | Render (freeze) inactive displays\n"
|
|
<< " -z | --no-zoom | Disable the zoom lens\n"
|
|
<< " -q | --quiet | Disable most logs (leaves errors)\n"
|
|
<< " -v | --verbose | Enable more logs\n"
|
|
<< " -t | --no-fractional | Disable fractional scaling support\n"
|
|
<< " -V | --version | Print version info\n";
|
|
}
|
|
|
|
int main(int argc, char** argv, char** envp) {
|
|
g_pHyprpicker = std::make_unique<CHyprpicker>();
|
|
|
|
while (true) {
|
|
int option_index = 0;
|
|
static struct option long_options[] = {{"autocopy", no_argument, NULL, 'a'},
|
|
{"format", required_argument, NULL, 'f'},
|
|
{"help", no_argument, NULL, 'h'},
|
|
{"no-fancy", no_argument, NULL, 'n'},
|
|
{"render-inactive", no_argument, NULL, 'r'},
|
|
{"no-zoom", no_argument, NULL, 'z'},
|
|
{"no-fractional", no_argument, NULL, 't'},
|
|
{"quiet", no_argument, NULL, 'q'},
|
|
{"verbose", no_argument, NULL, 'v'},
|
|
{"version", no_argument, NULL, 'V'},
|
|
{NULL, 0, NULL, 0}};
|
|
|
|
int c = getopt_long(argc, argv, ":f:hnarzqvtV", long_options, &option_index);
|
|
if (c == -1)
|
|
break;
|
|
|
|
switch (c) {
|
|
case 'f':
|
|
if (strcasecmp(optarg, "cmyk") == 0)
|
|
g_pHyprpicker->m_bSelectedOutputMode = OUTPUT_CMYK;
|
|
else if (strcasecmp(optarg, "hex") == 0)
|
|
g_pHyprpicker->m_bSelectedOutputMode = OUTPUT_HEX;
|
|
else if (strcasecmp(optarg, "rgb") == 0)
|
|
g_pHyprpicker->m_bSelectedOutputMode = OUTPUT_RGB;
|
|
else if (strcasecmp(optarg, "hsl") == 0)
|
|
g_pHyprpicker->m_bSelectedOutputMode = OUTPUT_HSL;
|
|
else if (strcasecmp(optarg, "hsv") == 0)
|
|
g_pHyprpicker->m_bSelectedOutputMode = OUTPUT_HSV;
|
|
else {
|
|
Debug::log(NONE, "Unrecognized format %s", optarg);
|
|
exit(1);
|
|
}
|
|
break;
|
|
case 'h': help(); exit(0);
|
|
case 'n': g_pHyprpicker->m_bFancyOutput = false; break;
|
|
case 'a': g_pHyprpicker->m_bAutoCopy = true; break;
|
|
case 'r': g_pHyprpicker->m_bRenderInactive = true; break;
|
|
case 'z': g_pHyprpicker->m_bNoZoom = true; break;
|
|
case 't': g_pHyprpicker->m_bNoFractional = true; break;
|
|
case 'q': Debug::quiet = true; break;
|
|
case 'v': Debug::verbose = true; break;
|
|
case 'V': {
|
|
std::cout << "hyprpicker v" << HYPRPICKER_VERSION << "\n";
|
|
exit(0);
|
|
}
|
|
|
|
default: help(); exit(1);
|
|
}
|
|
}
|
|
|
|
if (!isatty(fileno(stdout)) || getenv("NO_COLOR"))
|
|
g_pHyprpicker->m_bFancyOutput = false;
|
|
|
|
g_pHyprpicker->init();
|
|
|
|
return 0;
|
|
}
|