mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-21 18:52:49 +00:00
Honor the XDG specification when locating the CSS (#67)
According to XDG specifications paths like /usr/share etc. are usually in XDG_DATA_DIRS. Since this variable may be set differently for other linux distributions we prefer those environment variables to hard-coded paths. As such hard-coded paths have been removed This solves issue #66
This commit is contained in:
parent
438024c626
commit
8c49270677
3 changed files with 46 additions and 30 deletions
|
@ -175,6 +175,7 @@ The colors are from the Dracula theme: https://draculatheme.com
|
||||||
|
|
||||||
### I want to customize the colors
|
### I want to customize the colors
|
||||||
First, find where the data is located for gBar. Possible locations:
|
First, find where the data is located for gBar. Possible locations:
|
||||||
|
- In a 'gBar' directory found in any of the directories listed by `echo $XDG_DATA_DIRS`
|
||||||
- /usr/share/gBar
|
- /usr/share/gBar
|
||||||
- /usr/local/share/gBar
|
- /usr/local/share/gBar
|
||||||
- ~/.local/share/gBar
|
- ~/.local/share/gBar
|
||||||
|
|
12
flake.lock
12
flake.lock
|
@ -5,11 +5,11 @@
|
||||||
"systems": "systems"
|
"systems": "systems"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1689068808,
|
"lastModified": 1694529238,
|
||||||
"narHash": "sha256-6ixXo3wt24N/melDWjq70UuHQLxGV8jZvooRanIHXw0=",
|
"narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=",
|
||||||
"owner": "numtide",
|
"owner": "numtide",
|
||||||
"repo": "flake-utils",
|
"repo": "flake-utils",
|
||||||
"rev": "919d646de7be200f3bf08cb76ae1f09402b6f9b4",
|
"rev": "ff7b65b44d01cf9ba6a71320833626af21126384",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -20,11 +20,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1689752456,
|
"lastModified": 1701040486,
|
||||||
"narHash": "sha256-VOChdECcEI8ixz8QY+YC4JaNEFwQd1V8bA0G4B28Ki0=",
|
"narHash": "sha256-vawYwoHA5CwvjfqaT3A5CT9V36Eq43gxdwpux32Qkjw=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "7f256d7da238cb627ef189d56ed590739f42f13b",
|
"rev": "45827faa2132b8eade424f6bdd48d8828754341a",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
63
src/CSS.cpp
63
src/CSS.cpp
|
@ -13,36 +13,51 @@ namespace CSS
|
||||||
{
|
{
|
||||||
sProvider = gtk_css_provider_new();
|
sProvider = gtk_css_provider_new();
|
||||||
|
|
||||||
struct CSSDir
|
std::vector<std::string> locations;
|
||||||
|
const char* home = std::getenv("HOME");
|
||||||
|
|
||||||
|
const char* configHome = std::getenv("XDG_CONFIG_HOME");
|
||||||
|
if (configHome && strlen(configHome) != 0)
|
||||||
{
|
{
|
||||||
std::string xdgEnv;
|
locations.push_back(configHome);
|
||||||
std::string fallbackPath;
|
}
|
||||||
std::string relPath;
|
else if (home)
|
||||||
};
|
{
|
||||||
std::string home = getenv("HOME");
|
locations.push_back(std::string(home) + "/.config");
|
||||||
std::array<CSSDir, 4> locations = {
|
}
|
||||||
CSSDir{"XDG_CONFIG_HOME", home + "/.config", "/gBar/style.css"}, // Local config
|
|
||||||
CSSDir{"XDG_DATA_HOME", home + "/.local/share", "/gBar/style.css"}, // local user install
|
const char* dataHome = std::getenv("XDG_DATA_HOME");
|
||||||
CSSDir{"", "/usr/local/share", "/gBar/style.css"}, // local all install
|
if (dataHome && strlen(dataHome) != 0)
|
||||||
CSSDir{"", "/usr/share", "/gBar/style.css"}, // package manager all install
|
{
|
||||||
};
|
locations.push_back(dataHome);
|
||||||
|
}
|
||||||
|
else if (home)
|
||||||
|
{
|
||||||
|
locations.push_back(std::string(home) + "/.local/share");
|
||||||
|
}
|
||||||
|
|
||||||
|
const char* dataDirs = std::getenv("XDG_DATA_DIRS");
|
||||||
|
if (dataDirs && strlen(dataDirs) != 0)
|
||||||
|
{
|
||||||
|
std::stringstream ss(dataDirs);
|
||||||
|
std::string dir;
|
||||||
|
while (std::getline(ss, dir, ':'))
|
||||||
|
locations.push_back(dir);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
locations.push_back("/usr/local/share");
|
||||||
|
locations.push_back("/usr/share");
|
||||||
|
}
|
||||||
|
|
||||||
GError* err = nullptr;
|
GError* err = nullptr;
|
||||||
for (auto& dir : locations)
|
for (auto& dir : locations)
|
||||||
{
|
{
|
||||||
const char* xdgConfig = dir.xdgEnv.size() ? getenv(dir.xdgEnv.c_str()) : nullptr;
|
std::string file = dir + "/gBar/style.css";
|
||||||
std::string file;
|
|
||||||
if (xdgConfig)
|
|
||||||
{
|
|
||||||
file = (std::string(xdgConfig) + dir.relPath).c_str();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
file = (dir.fallbackPath + dir.relPath).c_str();
|
|
||||||
}
|
|
||||||
if (!std::ifstream(file).is_open())
|
if (!std::ifstream(file).is_open())
|
||||||
{
|
{
|
||||||
LOG("Info: No CSS found in " << dir.fallbackPath);
|
LOG("Info: No CSS found in " << dir);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,7 +68,7 @@ namespace CSS
|
||||||
LOG("CSS found and loaded successfully!");
|
LOG("CSS found and loaded successfully!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
LOG("Warning: Failed loading config for " << dir.fallbackPath << ", trying next one!");
|
LOG("Warning: Failed loading config for " << dir << ", trying next one!");
|
||||||
// Log any errors
|
// Log any errors
|
||||||
LOG(err->message);
|
LOG(err->message);
|
||||||
g_error_free(err);
|
g_error_free(err);
|
||||||
|
|
Loading…
Reference in a new issue