fix: project rename

This commit is contained in:
Michael Carlberg 2016-11-19 06:22:44 +01:00
parent 6a6796160a
commit fd57ab0f3d
172 changed files with 363 additions and 881 deletions

View file

@ -12,7 +12,7 @@
#include "x11/types.hpp"
#include "x11/window.hpp"
LEMONBUDDY_NS
POLYBAR_NS
// fwd
class tray_manager;
@ -132,4 +132,4 @@ namespace {
}
}
LEMONBUDDY_NS_END
POLYBAR_NS_END

View file

@ -6,7 +6,7 @@
#include "config.hpp"
#include "drawtypes/label.hpp"
LEMONBUDDY_NS
POLYBAR_NS
#define DEFAULT_SPACING -1
@ -94,4 +94,4 @@ class builder {
int m_fontindex = 1;
};
LEMONBUDDY_NS_END
POLYBAR_NS_END

View file

@ -2,7 +2,7 @@
#include "common.hpp"
LEMONBUDDY_NS
POLYBAR_NS
namespace command_line {
DEFINE_ERROR(argument_error);
@ -80,4 +80,4 @@ namespace {
}
}
LEMONBUDDY_NS_END
POLYBAR_NS_END

View file

@ -9,7 +9,7 @@
#include "utils/string.hpp"
#include "x11/xresources.hpp"
LEMONBUDDY_NS
POLYBAR_NS
#define GET_CONFIG_VALUE(section, var, name) var = m_conf.get<decltype(var)>(section, name, var)
#define REQ_CONFIG_VALUE(section, var, name) var = m_conf.get<decltype(var)>(section, name)
@ -220,4 +220,4 @@ namespace {
}
}
LEMONBUDDY_NS_END
POLYBAR_NS_END

View file

@ -12,7 +12,7 @@
#include "x11/connection.hpp"
#include "x11/types.hpp"
LEMONBUDDY_NS
POLYBAR_NS
class controller {
public:
@ -90,4 +90,4 @@ namespace {
}
}
LEMONBUDDY_NS_END
POLYBAR_NS_END

View file

@ -6,7 +6,7 @@
#include "components/logger.hpp"
#include "modules/meta.hpp"
LEMONBUDDY_NS
POLYBAR_NS
using module_t = unique_ptr<modules::module_interface>;
using modulemap_t = map<alignment, vector<module_t>>;
@ -73,4 +73,4 @@ namespace {
}
}
LEMONBUDDY_NS_END
POLYBAR_NS_END

View file

@ -3,7 +3,7 @@
#include "common.hpp"
#include "components/logger.hpp"
LEMONBUDDY_NS
POLYBAR_NS
/**
* Message types
@ -67,4 +67,4 @@ namespace {
}
}
LEMONBUDDY_NS_END
POLYBAR_NS_END

View file

@ -4,7 +4,7 @@
#include "common.hpp"
LEMONBUDDY_NS
POLYBAR_NS
enum class loglevel {
NONE = 0,
@ -135,10 +135,10 @@ class logger {
*/
// clang-format off
map<loglevel, string> m_prefixes {
{loglevel::TRACE, "lemonbuddy|trace "},
{loglevel::INFO, "lemonbuddy|info "},
{loglevel::WARNING, "lemonbuddy|warn "},
{loglevel::ERROR, "lemonbuddy|error "},
{loglevel::TRACE, "polybar|trace "},
{loglevel::INFO, "polybar|info "},
{loglevel::WARNING, "polybar|warn "},
{loglevel::ERROR, "polybar|error "},
};
/**
@ -164,4 +164,4 @@ namespace {
}
}
LEMONBUDDY_NS_END
POLYBAR_NS_END

View file

@ -4,7 +4,7 @@
#include "components/signals.hpp"
#include "components/types.hpp"
LEMONBUDDY_NS
POLYBAR_NS
DEFINE_ERROR(unrecognized_token);
@ -27,4 +27,4 @@ class parser {
vector<int> m_actions;
};
LEMONBUDDY_NS_END
POLYBAR_NS_END

View file

@ -3,7 +3,7 @@
#include "common.hpp"
#include "components/types.hpp"
LEMONBUDDY_NS
POLYBAR_NS
/**
* @TODO: Allow multiple signal handlers
@ -35,4 +35,4 @@ namespace g_signals {
}
}
LEMONBUDDY_NS_END
POLYBAR_NS_END

View file

@ -4,7 +4,7 @@
#include "x11/color.hpp"
#include "x11/randr.hpp"
LEMONBUDDY_NS
POLYBAR_NS
enum class border { NONE = 0, TOP, BOTTOM, LEFT, RIGHT, ALL };
enum class alignment { NONE = 0, LEFT, CENTER, RIGHT };
@ -90,7 +90,7 @@ struct bar_settings {
struct border_settings {
border_settings() = default;
lemonbuddy::color color{g_colorblack};
polybar::color color{g_colorblack};
uint16_t size{0};
};
@ -109,4 +109,4 @@ struct action_block {
struct wmsettings_bspwm {};
LEMONBUDDY_NS_END
POLYBAR_NS_END