Merge pull request #1 from BlueGone/multiple-default-paths

Add different default paths for config and css files
This commit is contained in:
Alex
2018-08-09 14:22:41 +02:00
committed by GitHub
2 changed files with 36 additions and 3 deletions

View File

@ -1,5 +1,8 @@
#pragma once
#include <unistd.h>
#include <wordexp.h>
#include <iostream>
#include <fmt/format.h>
@ -21,8 +24,8 @@ namespace waybar {
struct Client {
uint32_t height = 30;
std::string cssFile = "./resources/style.css";
std::string configFile = "./resources/config";
std::string cssFile;
std::string configFile;
Gtk::Main gtk_main;