You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
397 B
C++

#ifndef ATOMS_H
#define ATOMS_H
#include <X11/Xlib.h>
class Atoms {
public:
Atoms();
Atom wm_protocols;
Atom wm_delete_window;
Atom wm_take_focus;
Atom kwm_win_icon; // compatibility
Atom net_number_of_desktops;
Atom net_current_desktop;
Atom net_active_window;
Atom net_client_list;
Atom net_client_list_stacking;
};
extern Atoms* atoms;
#endif