gBar/src/CSS.h
scorpion-26 e717e0e7ad Add a CLI option to override the config dir
The CLI option -c/--config overrides the search path, and appends itself
to the front of the CSS search path.

Partially implements https://github.com/scorpion-26/gBar/issues/75
2024-01-21 17:13:45 +01:00

9 lines
164 B
C++

#pragma once
#include <gtk/gtk.h>
#include <string>
namespace CSS
{
void Load(const std::string& overrideConfigLocation);
GtkCssProvider* GetProvider();
}