all repos — tint2 @ e046cb88abc85eef218d1912297db92e7cbf3204

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

src/freespace/freespace.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**************************************************************************
* Copyright (C) 2011 Mishael A Sibiryakov (death@junki.org)
**************************************************************************/

#ifndef FREESPACE_H
#define FREESPACE_H

#include "common.h"
#include "area.h"

typedef struct FreeSpace {
    Area area;
} FreeSpace;

struct Panel;

void cleanup_freespace(struct Panel *panel);
void init_freespace_panel(void *panel);

gboolean resize_freespace(void *obj);

#endif