File: prefs.h

package info (click to toggle)
amiwm 0.22pl2-5
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 1,048 kB
  • sloc: ansic: 10,195; perl: 443; makefile: 258; yacc: 245; lex: 215; sh: 211
file content (30 lines) | stat: -rw-r--r-- 686 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef PREFS_H
#define PREFS_H

extern struct prefs_struct {
  int fastquit;
  int sizeborder;
  int forcemove;
  int borderwidth;
  int autoraise;
  int opaquemove;
  int opaqueresize;
  int customiconsonly;
  int shortlabelicons;
  char *icondir, *module_path, *defaulticon;
  int focus, manage_all, screenmenu;
  int titlebarclock;			/* display titlebar clock? */
  char *titleclockformat;		/* format to use for the clock */
  int titleclockinterval;		/* how often do we update the clock?*/
  struct _Style *firststyle, *laststyle;
} prefs;

#define FM_MANUAL 0
#define FM_ALWAYS 1
#define FM_AUTO 2

#define FOC_FOLLOWMOUSE 0
#define FOC_CLICKTOTYPE 1
#define FOC_SLOPPY 2

#endif