mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-25 04:32:10 +00:00
e717e0e7ad
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
9 lines
164 B
C++
9 lines
164 B
C++
#pragma once
|
|
#include <gtk/gtk.h>
|
|
#include <string>
|
|
|
|
namespace CSS
|
|
{
|
|
void Load(const std::string& overrideConfigLocation);
|
|
GtkCssProvider* GetProvider();
|
|
}
|