summaryrefslogtreecommitdiffstats
path: root/src/config.cpp
blob: 1843639c58d3d730ca84539d0ca0b5999e48d801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// Created by mfritzsc on 8/1/17.
//

#include "config.hpp"

namespace wm {

config::config() : cfg() {
   // Supply default values for these...
   this->cfg["layers.json"] = getenv("LAYERS_JSON") ?: "../layers.json";
   this->cfg["layout.json"] = getenv("LAYOUT_JSON") ?: "../layout.json";
}

}  // namespace wm