mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
Merge pull request #2 from Alexays/system-wide-config
Add system-wide config and style files
This commit is contained in:
commit
a25967e4c6
@ -51,3 +51,9 @@ executable(
|
||||
include_directories: [include_directories('include')],
|
||||
install: true,
|
||||
)
|
||||
|
||||
install_data(
|
||||
'./resources/config',
|
||||
'./resources/style.css',
|
||||
install_dir: '/etc/xdg/waybar',
|
||||
)
|
||||
|
@ -58,11 +58,13 @@ waybar::Client::Client(int argc, char* argv[])
|
||||
configFile = getFirstValidPath({
|
||||
"$XDG_CONFIG_HOME/waybar/config",
|
||||
"$HOME/waybar/config",
|
||||
"/etc/xdg/waybar/config",
|
||||
"./resources/config",
|
||||
});
|
||||
cssFile = getFirstValidPath({
|
||||
"$XDG_CONFIG_HOME/waybar/style.css",
|
||||
"$HOME/waybar/style.css",
|
||||
"/etc/xdg/waybar/style.css",
|
||||
"./resources/style.css",
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user