mirror of
https://github.com/hyprwm/hyprpaper.git
synced 2024-12-22 12:19:49 +01:00
85e850bca3
* flake.nix: use gcc14Stdenv, update --------- Co-authored-by: Mihai Fufezan <mihai@fufexan.net>
34 lines
1.3 KiB
C++
34 lines
1.3 KiB
C++
#include <iostream>
|
|
#include "defines.hpp"
|
|
#include "Hyprpaper.hpp"
|
|
|
|
int main(int argc, char** argv, char** envp) {
|
|
Debug::log(LOG, "Welcome to hyprpaper!\nbuilt from commit {} ({})", GIT_COMMIT_HASH, GIT_COMMIT_MESSAGE);
|
|
|
|
// parse some args
|
|
std::string configPath;
|
|
bool noFractional = false;
|
|
for (int i = 1; i < argc; ++i) {
|
|
if ((!strcmp(argv[i], "-c") || !strcmp(argv[i], "--config")) && argc >= i + 2) {
|
|
configPath = std::string(argv[++i]);
|
|
Debug::log(LOG, "Using config location {}.", configPath);
|
|
} else if (!strcmp(argv[i], "--no-fractional") || !strcmp(argv[i], "-n")) {
|
|
noFractional = true;
|
|
Debug::log(LOG, "Disabling fractional scaling support!");
|
|
} else {
|
|
std::cout << "Hyprpaper usage: hyprpaper [arg [...]].\n\nArguments:\n"
|
|
<< "--help -h | Show this help message\n"
|
|
<< "--config -c | Specify config file to use\n"
|
|
<< "--no-fractional -n | Disable fractional scaling support\n";
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
// starts
|
|
g_pHyprpaper = std::make_unique<CHyprpaper>();
|
|
g_pHyprpaper->m_szExplicitConfigPath = configPath;
|
|
g_pHyprpaper->m_bNoFractionalScale = noFractional;
|
|
g_pHyprpaper->init();
|
|
|
|
return 0;
|
|
}
|