152e30c374
This adds a --reload flag to cmd_bindswitch that allows for the binding to be executed on reload. One possible use case for this is to allow users to disable outputs when the lid closes and enable them when the lid opens without having to open and re-close the lid after a reload.
24 lines
528 B
C
24 lines
528 B
C
#ifndef _SWAY_INPUT_SWITCH_H
|
|
#define _SWAY_INPUT_SWITCH_H
|
|
|
|
#include "sway/input/seat.h"
|
|
|
|
struct sway_switch {
|
|
struct sway_seat_device *seat_device;
|
|
enum wlr_switch_state state;
|
|
enum wlr_switch_type type;
|
|
|
|
struct wl_listener switch_toggle;
|
|
};
|
|
|
|
struct sway_switch *sway_switch_create(struct sway_seat *seat,
|
|
struct sway_seat_device *device);
|
|
|
|
void sway_switch_configure(struct sway_switch *sway_switch);
|
|
|
|
void sway_switch_destroy(struct sway_switch *sway_switch);
|
|
|
|
void sway_switch_retrigger_bindings_for_all(void);
|
|
|
|
#endif
|