mirror of
https://github.com/hyprwm/hyprpicker.git
synced 2024-11-17 00:25:57 +01:00
added fancy output
This commit is contained in:
parent
819195131b
commit
db2aaa01de
3 changed files with 15 additions and 2 deletions
|
@ -136,12 +136,18 @@ void Events::handlePointerButton(void *data, struct wl_pointer *wl_pointer, uint
|
|||
return result;
|
||||
};
|
||||
|
||||
if (g_pHyprpicker->m_bFancyOutput)
|
||||
Debug::log(NONE, "\033[38;2;%i;%i;%im #%s%s%s", COL.r, COL.g, COL.b, toHex(COL.r).c_str(), toHex(COL.g).c_str(), toHex(COL.b).c_str());
|
||||
else
|
||||
Debug::log(NONE, "#%s%s%s", toHex(COL.r).c_str(), toHex(COL.g).c_str(), toHex(COL.b).c_str());
|
||||
|
||||
break;
|
||||
}
|
||||
case OUTPUT_RGB:
|
||||
{
|
||||
if (g_pHyprpicker->m_bFancyOutput)
|
||||
Debug::log(NONE, "\033[38;2;%i;%i;%im %i %i %i", COL.r, COL.g, COL.b, COL.r, COL.g, COL.b);
|
||||
else
|
||||
Debug::log(NONE, "%i %i %i", COL.r, COL.g, COL.b);
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -24,6 +24,8 @@ public:
|
|||
|
||||
eOutputMode m_bSelectedOutputMode = OUTPUT_HEX;
|
||||
|
||||
bool m_bFancyOutput = true;
|
||||
|
||||
bool m_bRunning = true;
|
||||
|
||||
std::vector<std::unique_ptr<SMonitor>> m_vMonitors;
|
||||
|
|
|
@ -15,6 +15,8 @@ int main(int argc, char** argv, char** envp) {
|
|||
if (arg == "--format") {
|
||||
currentlyParsing = 1;
|
||||
continue;
|
||||
} else if (arg == "--no-fancy") {
|
||||
g_pHyprpicker->m_bFancyOutput = false;
|
||||
} else {
|
||||
Debug::log(NONE, "Unrecognized option %s", arg.c_str());
|
||||
exit(1);
|
||||
|
@ -32,6 +34,9 @@ int main(int argc, char** argv, char** envp) {
|
|||
}
|
||||
}
|
||||
|
||||
if (!isatty(fileno(stdout)) || getenv("NO_COLOR"))
|
||||
g_pHyprpicker->m_bFancyOutput = false;
|
||||
|
||||
g_pHyprpicker->init();
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue