mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
Merge pull request #1484 from emersion/fix-indent
Fix indentation in various files
This commit is contained in:
commit
b619ab4d34
5 changed files with 118 additions and 124 deletions
|
@ -15,4 +15,4 @@ struct roots_switch {
|
||||||
void roots_switch_handle_toggle(struct roots_switch *lid_switch,
|
void roots_switch_handle_toggle(struct roots_switch *lid_switch,
|
||||||
struct wlr_event_switch_toggle *event);
|
struct wlr_event_switch_toggle *event);
|
||||||
|
|
||||||
#endif // ROOTSTON_SWITCH_H
|
#endif
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
static bool outputs_enabled = true;
|
static bool outputs_enabled = true;
|
||||||
|
|
||||||
static const char *exec_prefix = "exec ";
|
static const char exec_prefix[] = "exec ";
|
||||||
|
|
||||||
static void double_fork_shell_cmd(const char *shell_cmd) {
|
static void double_fork_shell_cmd(const char *shell_cmd) {
|
||||||
pid_t pid = fork();
|
pid_t pid = fork();
|
||||||
|
|
|
@ -1,16 +1,11 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include <wlr/util/log.h>
|
#include <wlr/util/log.h>
|
||||||
|
|
||||||
#include "rootston/bindings.h"
|
#include "rootston/bindings.h"
|
||||||
#include "rootston/config.h"
|
|
||||||
#include "rootston/input.h"
|
|
||||||
#include "rootston/seat.h"
|
|
||||||
#include "rootston/switch.h"
|
|
||||||
|
|
||||||
void roots_switch_handle_toggle(struct roots_switch *lid_switch,
|
void roots_switch_handle_toggle(struct roots_switch *lid_switch,
|
||||||
struct wlr_event_switch_toggle *event) {
|
struct wlr_event_switch_toggle *event) {
|
||||||
struct wl_list *bound_switches = &lid_switch->seat->input->server->config->switches;
|
struct wl_list *bound_switches =
|
||||||
|
&lid_switch->seat->input->server->config->switches;
|
||||||
struct roots_switch_config *sc;
|
struct roots_switch_config *sc;
|
||||||
wl_list_for_each(sc, bound_switches, link) {
|
wl_list_for_each(sc, bound_switches, link) {
|
||||||
if ((sc->name != NULL && strcmp(event->device->name, sc->name) != 0) &&
|
if ((sc->name != NULL && strcmp(event->device->name, sc->name) != 0) &&
|
||||||
|
@ -21,6 +16,7 @@ void roots_switch_handle_toggle(struct roots_switch *lid_switch,
|
||||||
event->switch_state != sc->switch_state) {
|
event->switch_state != sc->switch_state) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
execute_binding_command(lid_switch->seat, lid_switch->seat->input, sc->command);
|
execute_binding_command(lid_switch->seat,
|
||||||
|
lid_switch->seat->input, sc->command);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -469,12 +469,10 @@ static void toplevel_send_details_to_toplevel_resource(
|
||||||
struct wlr_foreign_toplevel_handle_v1 *toplevel,
|
struct wlr_foreign_toplevel_handle_v1 *toplevel,
|
||||||
struct wl_resource *resource) {
|
struct wl_resource *resource) {
|
||||||
if (toplevel->title) {
|
if (toplevel->title) {
|
||||||
zwlr_foreign_toplevel_handle_v1_send_title(resource,
|
zwlr_foreign_toplevel_handle_v1_send_title(resource, toplevel->title);
|
||||||
toplevel->title);
|
|
||||||
}
|
}
|
||||||
if (toplevel->app_id) {
|
if (toplevel->app_id) {
|
||||||
zwlr_foreign_toplevel_handle_v1_send_app_id(resource,
|
zwlr_foreign_toplevel_handle_v1_send_app_id(resource, toplevel->app_id);
|
||||||
toplevel->app_id);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct wlr_foreign_toplevel_handle_v1_output *output;
|
struct wlr_foreign_toplevel_handle_v1_output *output;
|
||||||
|
|
Loading…
Reference in a new issue