archy-dwm/src/actions.h

45 lines
785 B
C
Raw Normal View History

2022-10-31 11:32:01 +00:00
//
// Created by anas on 10/31/22.
//
2023-11-19 22:43:59 +00:00
#ifndef ACTIONS_H
#define ACTIONS_H
2022-10-31 11:32:01 +00:00
2023-11-19 22:43:59 +00:00
#include "archy_dwm.h"
2022-10-31 11:32:01 +00:00
static void focusmon(const Arg *arg);
static void fullscreen(const Arg *arg);
static void focusstack(const Arg *arg);
static void tagmon(const Arg *arg);
static void incnmaster(const Arg *arg);
static void killclient(const Arg *arg);
static void movemouse(const Arg *arg);
static void togglebar(const Arg *arg);
static void togglesticky(const Arg *arg);
static void togglefloating(const Arg *arg);
static void setmfact(const Arg *arg);
static void view(const Arg *arg);
static void movestack(const Arg *arg);
static void setlayout(const Arg *arg);
static void tag(const Arg *arg);
static void zoom(const Arg *arg);
static void quit(const Arg *arg);
2023-11-19 22:43:59 +00:00
#endif //ACTIONS_H