-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactions.h
35 lines (33 loc) · 1.22 KB
/
actions.h
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
31
32
33
34
35
#pragma once
#include "nwm.h"
extern void quit(const Arg* arg);
extern void view(const Arg* arg);
extern void toggleall(const Arg* arg);
extern void toggleview(const Arg* arg);
extern void tag(const Arg* arg);
extern void shifttag(const Arg* arg);
extern void toggletag(const Arg* arg);
extern void tabmode(const Arg* arg);
extern void tagmon(const Arg* arg);
extern void togglefloating(const Arg* arg);
extern void togglesticky(const Arg* arg);
extern void togglefullscr(const Arg* arg);
extern void cyclelayout(const Arg* arg);
extern void focusurgent(const Arg* arg);
extern void takeurgent(const Arg* arg);
extern void movestack(const Arg* arg);
extern void resizemouse(const Arg* arg);
extern void movemouse(const Arg* arg);
extern void zoom(const Arg* arg);
extern void togglebar(const Arg* arg);
extern void setlayout(const Arg* arg);
extern void setmfact(const Arg* arg);
extern void shiftview(const Arg* arg);
extern void shiftviewclients(const Arg* arg);
extern void incnmaster(const Arg* arg);
extern void killclient(const Arg* arg);
extern void togglecentering(const Arg* arg);
extern void togglesnapping(const Arg* arg);
extern void focuswin(const Arg* arg);
extern void focusmon(const Arg* arg);
extern void focusstack(const Arg* arg);