mirror of
https://github.com/swaywm/sway.git
synced 2025-11-02 09:01:40 -05:00
commit
61aa0937a7
15 changed files with 636 additions and 2 deletions
|
|
@ -107,6 +107,12 @@ struct seat_config {
|
|||
list_t *attachments; // list of seat_attachment configs
|
||||
};
|
||||
|
||||
enum config_dpms {
|
||||
DPMS_IGNORE,
|
||||
DPMS_ON,
|
||||
DPMS_OFF
|
||||
};
|
||||
|
||||
/**
|
||||
* Size and position configuration for a particular output.
|
||||
*
|
||||
|
|
@ -123,6 +129,7 @@ struct output_config {
|
|||
|
||||
char *background;
|
||||
char *background_option;
|
||||
enum config_dpms dpms_state;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ struct sway_server {
|
|||
|
||||
struct wlr_compositor *compositor;
|
||||
struct wlr_data_device_manager *data_device_manager;
|
||||
struct wlr_idle *idle;
|
||||
|
||||
struct sway_input_manager *input;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue