forked from external/yambar
dynlist: move to particles folder
This commit is contained in:
parent
86425fbe48
commit
52f13dec3d
4 changed files with 5 additions and 5 deletions
|
@ -40,6 +40,7 @@ add_executable(f00bar
|
|||
decorations/stack.c decorations/stack.h
|
||||
decorations/underline.c decorations/underline.h
|
||||
|
||||
particles/dynlist.c particles/dynlist.h
|
||||
particles/empty.c particles/empty.h
|
||||
particles/list.c particles/list.h
|
||||
particles/map.c particles/map.h
|
||||
|
@ -50,7 +51,6 @@ add_executable(f00bar
|
|||
modules/backlight/backlight.c modules/backlight/backlight.h
|
||||
modules/battery/battery.c modules/battery/battery.h
|
||||
modules/clock/clock.c modules/clock/clock.h
|
||||
modules/i3/dynlist-exposable.c modules/i3/dynlist-exposable.h
|
||||
modules/i3/i3.c modules/i3/i3.h
|
||||
modules/label/label.c modules/label/label.h
|
||||
modules/mpd/mpd.c modules/mpd/mpd.h
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "../../log.h"
|
||||
#include "../../bar.h"
|
||||
|
||||
#include "dynlist-exposable.h"
|
||||
#include "../../particles/dynlist.h"
|
||||
|
||||
struct ws_content {
|
||||
char *name;
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#include "dynlist-exposable.h"
|
||||
#include "dynlist.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#define LOG_MODULE "dynlist"
|
||||
#include "../../log.h"
|
||||
#include "../log.h"
|
||||
|
||||
struct private {
|
||||
int left_spacing;
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <stddef.h>
|
||||
#include "../../particle.h"
|
||||
#include "../particle.h"
|
||||
|
||||
struct exposable *dynlist_exposable_new(
|
||||
struct exposable **exposables, size_t count, int left_spacing, int right_spacing);
|
Loading…
Add table
Reference in a new issue