mv theme.c ..

This commit is contained in:
Johan Malm 2021-02-21 22:18:34 +00:00
parent 22d66c81ca
commit de88b69d62
10 changed files with 7 additions and 12 deletions

View file

@ -7,7 +7,6 @@
#include <assert.h> #include <assert.h>
#include "config/rcxml.h" #include "config/rcxml.h"
#include "labwc.h" #include "labwc.h"
#include "theme/theme.h"
#define BORDER_WIDTH (2) #define BORDER_WIDTH (2)

View file

@ -3,7 +3,7 @@
#include "common/spawn.h" #include "common/spawn.h"
#include "config/session.h" #include "config/session.h"
#include "labwc.h" #include "labwc.h"
#include "theme/theme.h" #include "theme.h"
#include "xbm/xbm.h" #include "xbm/xbm.h"
#include "menu/menu.h" #include "menu/menu.h"

View file

@ -16,7 +16,7 @@
#include "common/string-helpers.h" #include "common/string-helpers.h"
#include "labwc.h" #include "labwc.h"
#include "menu/menu.h" #include "menu/menu.h"
#include "theme/theme.h" #include "theme.h"
static const char font[] = "Sans 8"; static const char font[] = "Sans 8";

View file

@ -12,6 +12,7 @@ labwc_sources = files(
'output.c', 'output.c',
'seat.c', 'seat.c',
'server.c', 'server.c',
'theme.c',
'view.c', 'view.c',
'xdg.c', 'xdg.c',
) )
@ -26,6 +27,5 @@ endif
subdir('common') subdir('common')
subdir('config') subdir('config')
subdir('theme')
subdir('xbm') subdir('xbm')
subdir('menu') subdir('menu')

View file

@ -12,7 +12,7 @@
#include <wlr/util/region.h> #include <wlr/util/region.h>
#include "labwc.h" #include "labwc.h"
#include "menu/menu.h" #include "menu/menu.h"
#include "theme/theme.h" #include "theme.h"
#include "layers.h" #include "layers.h"
//#define DEBUG 1 //#define DEBUG 1

View file

@ -12,7 +12,7 @@
#include "labwc.h" #include "labwc.h"
#include "layers.h" #include "layers.h"
#include "menu/menu.h" #include "menu/menu.h"
#include "theme/theme.h" #include "theme.h"
static struct wlr_compositor *compositor; static struct wlr_compositor *compositor;
static struct wl_event_source *sighup_source; static struct wl_event_source *sighup_source;

View file

@ -10,7 +10,7 @@
#include "common/log.h" #include "common/log.h"
#include "common/string-helpers.h" #include "common/string-helpers.h"
#include "common/zfree.h" #include "common/zfree.h"
#include "theme/theme.h" #include "theme.h"
#include "xbm/xbm.h" #include "xbm/xbm.h"
static int static int

View file

@ -1,4 +0,0 @@
labwc_sources += files(
'theme.c',
)

View file

@ -10,7 +10,7 @@
#include "common/dir.h" #include "common/dir.h"
#include "common/grab-file.h" #include "common/grab-file.h"
#include "config/rcxml.h" #include "config/rcxml.h"
#include "theme/theme.h" #include "theme.h"
#include "xbm/parse.h" #include "xbm/parse.h"
#include "xbm/xbm.h" #include "xbm/xbm.h"