├── .builds ├── alpine.yml ├── archlinux.yml └── freebsd.yml ├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── enhancement.md │ └── i3_compat.md ├── .gitignore ├── .mailmap ├── CONTRIBUTING.md ├── LICENSE ├── README.ar.md ├── README.az.md ├── README.cs.md ├── README.de.md ├── README.dk.md ├── README.es.md ├── README.fr.md ├── README.ge.md ├── README.gr.md ├── README.hi.md ├── README.hu.md ├── README.ir.md ├── README.it.md ├── README.ja.md ├── README.ko.md ├── README.md ├── README.nl.md ├── README.no.md ├── README.pl.md ├── README.pt.md ├── README.ro.md ├── README.ru.md ├── README.sr.md ├── README.sv.md ├── README.tr.md ├── README.uk.md ├── README.zh-CN.md ├── README.zh-TW.md ├── assets ├── LICENSE ├── Sway_Logo+Text_Ver1.svg ├── Sway_Logo+Text_Ver1_1500x716.png ├── Sway_Logo+Text_Ver2.png ├── Sway_Logo+Text_Ver2.svg ├── Sway_Logo+Text_Ver3.png ├── Sway_Logo+Text_Ver3.svg ├── Sway_Logo+Text_Ver4.png ├── Sway_Logo+Text_Ver4.svg ├── Sway_Tree.png ├── Sway_Tree.svg ├── Sway_Tree_1000x934.png ├── Sway_Wallpaper_Blue_1136x640.png ├── Sway_Wallpaper_Blue_1136x640_Portrait.png ├── Sway_Wallpaper_Blue_1366x768.png ├── Sway_Wallpaper_Blue_1920x1080.png ├── Sway_Wallpaper_Blue_2048x1536.png ├── Sway_Wallpaper_Blue_2048x1536_Portrait.png ├── Sway_Wallpaper_Blue_768x1024.png └── Sway_Wallpaper_Blue_768x1024_Portrait.png ├── client ├── meson.build └── pool-buffer.c ├── common ├── cairo.c ├── gesture.c ├── ipc-client.c ├── list.c ├── log.c ├── loop.c ├── meson.build ├── pango.c ├── stringop.c └── util.c ├── completions ├── bash │ ├── sway │ ├── swaybar │ └── swaymsg ├── fish │ ├── sway.fish │ ├── swaymsg.fish │ └── swaynag.fish ├── meson.build └── zsh │ ├── _sway │ ├── _swaybar │ └── _swaymsg ├── config.in ├── include ├── cairo_util.h ├── gesture.h ├── ipc-client.h ├── ipc.h ├── list.h ├── log.h ├── loop.h ├── meson.build ├── pango.h ├── pool-buffer.h ├── stringop.h ├── sway │ ├── commands.h │ ├── config.h │ ├── criteria.h │ ├── decoration.h │ ├── desktop │ │ ├── idle_inhibit_v1.h │ │ ├── launcher.h │ │ └── transaction.h │ ├── input │ │ ├── cursor.h │ │ ├── input-manager.h │ │ ├── keyboard.h │ │ ├── libinput.h │ │ ├── seat.h │ │ ├── switch.h │ │ ├── tablet.h │ │ ├── text_input.h │ │ └── text_input_popup.h │ ├── ipc-json.h │ ├── ipc-server.h │ ├── layers.h │ ├── lock.h │ ├── output.h │ ├── scene_descriptor.h │ ├── server.h │ ├── sway_text_node.h │ ├── swaynag.h │ ├── tree │ │ ├── arrange.h │ │ ├── container.h │ │ ├── node.h │ │ ├── root.h │ │ ├── view.h │ │ └── workspace.h │ ├── xdg_decoration.h │ └── xwayland.h ├── swaybar │ ├── bar.h │ ├── config.h │ ├── i3bar.h │ ├── image.h │ ├── input.h │ ├── ipc.h │ ├── render.h │ ├── status_line.h │ └── tray │ │ ├── host.h │ │ ├── icon.h │ │ ├── item.h │ │ ├── tray.h │ │ └── watcher.h ├── swaynag │ ├── config.h │ ├── render.h │ ├── swaynag.h │ └── types.h └── util.h ├── meson.build ├── meson_options.txt ├── protocols ├── meson.build ├── wlr-layer-shell-unstable-v1.xml └── wlr-output-power-management-unstable-v1.xml ├── release.sh ├── sway.desktop ├── sway ├── commands.c ├── commands │ ├── allow_tearing.c │ ├── assign.c │ ├── bar.c │ ├── bar │ │ ├── bind.c │ │ ├── binding_mode_indicator.c │ │ ├── colors.c │ │ ├── font.c │ │ ├── gaps.c │ │ ├── height.c │ │ ├── hidden_state.c │ │ ├── icon_theme.c │ │ ├── id.c │ │ ├── mode.c │ │ ├── modifier.c │ │ ├── output.c │ │ ├── pango_markup.c │ │ ├── position.c │ │ ├── separator_symbol.c │ │ ├── status_command.c │ │ ├── status_edge_padding.c │ │ ├── status_padding.c │ │ ├── strip_workspace_name.c │ │ ├── strip_workspace_numbers.c │ │ ├── swaybar_command.c │ │ ├── tray_bind.c │ │ ├── tray_output.c │ │ ├── tray_padding.c │ │ ├── workspace_buttons.c │ │ ├── workspace_min_width.c │ │ └── wrap_scroll.c │ ├── bind.c │ ├── border.c │ ├── client.c │ ├── create_output.c │ ├── default_border.c │ ├── default_floating_border.c │ ├── default_orientation.c │ ├── exec.c │ ├── exec_always.c │ ├── exit.c │ ├── floating.c │ ├── floating_minmax_size.c │ ├── floating_modifier.c │ ├── focus.c │ ├── focus_follows_mouse.c │ ├── focus_on_window_activation.c │ ├── focus_wrapping.c │ ├── font.c │ ├── for_window.c │ ├── force_display_urgency_hint.c │ ├── force_focus_wrapping.c │ ├── fullscreen.c │ ├── gaps.c │ ├── gesture.c │ ├── hide_edge_borders.c │ ├── include.c │ ├── inhibit_idle.c │ ├── input.c │ ├── input │ │ ├── accel_profile.c │ │ ├── calibration_matrix.c │ │ ├── click_method.c │ │ ├── clickfinger_button_map.c │ │ ├── drag.c │ │ ├── drag_lock.c │ │ ├── dwt.c │ │ ├── dwtp.c │ │ ├── events.c │ │ ├── left_handed.c │ │ ├── map_from_region.c │ │ ├── map_to_output.c │ │ ├── map_to_region.c │ │ ├── middle_emulation.c │ │ ├── natural_scroll.c │ │ ├── pointer_accel.c │ │ ├── repeat_delay.c │ │ ├── repeat_rate.c │ │ ├── rotation_angle.c │ │ ├── scroll_button.c │ │ ├── scroll_button_lock.c │ │ ├── scroll_factor.c │ │ ├── scroll_method.c │ │ ├── tap.c │ │ ├── tap_button_map.c │ │ ├── tool_mode.c │ │ ├── xkb_capslock.c │ │ ├── xkb_file.c │ │ ├── xkb_layout.c │ │ ├── xkb_model.c │ │ ├── xkb_numlock.c │ │ ├── xkb_options.c │ │ ├── xkb_rules.c │ │ ├── xkb_switch_layout.c │ │ └── xkb_variant.c │ ├── kill.c │ ├── layout.c │ ├── mark.c │ ├── max_render_time.c │ ├── mode.c │ ├── mouse_warping.c │ ├── move.c │ ├── new_float.c │ ├── new_window.c │ ├── no_focus.c │ ├── nop.c │ ├── opacity.c │ ├── output.c │ ├── output │ │ ├── adaptive_sync.c │ │ ├── allow_tearing.c │ │ ├── background.c │ │ ├── color_profile.c │ │ ├── disable.c │ │ ├── dpms.c │ │ ├── enable.c │ │ ├── hdr.c │ │ ├── max_render_time.c │ │ ├── mode.c │ │ ├── position.c │ │ ├── power.c │ │ ├── render_bit_depth.c │ │ ├── scale.c │ │ ├── scale_filter.c │ │ ├── subpixel.c │ │ ├── toggle.c │ │ ├── transform.c │ │ └── unplug.c │ ├── popup_during_fullscreen.c │ ├── primary_selection.c │ ├── reload.c │ ├── rename.c │ ├── resize.c │ ├── scratchpad.c │ ├── seat.c │ ├── seat │ │ ├── attach.c │ │ ├── cursor.c │ │ ├── fallback.c │ │ ├── hide_cursor.c │ │ ├── idle.c │ │ ├── keyboard_grouping.c │ │ ├── pointer_constraint.c │ │ ├── shortcuts_inhibitor.c │ │ └── xcursor_theme.c │ ├── set.c │ ├── shortcuts_inhibitor.c │ ├── show_marks.c │ ├── smart_borders.c │ ├── smart_gaps.c │ ├── split.c │ ├── sticky.c │ ├── swap.c │ ├── swaybg_command.c │ ├── swaynag_command.c │ ├── tiling_drag.c │ ├── tiling_drag_threshold.c │ ├── title_align.c │ ├── title_format.c │ ├── titlebar_border_thickness.c │ ├── titlebar_padding.c │ ├── unmark.c │ ├── urgent.c │ ├── workspace.c │ ├── workspace_layout.c │ ├── ws_auto_back_and_forth.c │ └── xwayland.c ├── config.c ├── config │ ├── bar.c │ ├── input.c │ ├── output.c │ └── seat.c ├── criteria.c ├── decoration.c ├── desktop │ ├── idle_inhibit_v1.c │ ├── launcher.c │ ├── layer_shell.c │ ├── output.c │ ├── tearing.c │ ├── transaction.c │ ├── xdg_shell.c │ └── xwayland.c ├── input │ ├── cursor.c │ ├── input-manager.c │ ├── keyboard.c │ ├── libinput.c │ ├── seat.c │ ├── seatop_default.c │ ├── seatop_down.c │ ├── seatop_move_floating.c │ ├── seatop_move_tiling.c │ ├── seatop_resize_floating.c │ ├── seatop_resize_tiling.c │ ├── switch.c │ ├── tablet.c │ └── text_input.c ├── ipc-json.c ├── ipc-server.c ├── lock.c ├── main.c ├── meson.build ├── realtime.c ├── scene_descriptor.c ├── server.c ├── sway-bar.5.scd ├── sway-input.5.scd ├── sway-ipc.7.scd ├── sway-output.5.scd ├── sway.1.scd ├── sway.5.scd ├── sway_text_node.c ├── swaynag.c ├── tree │ ├── arrange.c │ ├── container.c │ ├── node.c │ ├── output.c │ ├── root.c │ ├── view.c │ └── workspace.c ├── xdg_activation_v1.c └── xdg_decoration.c ├── swaybar ├── bar.c ├── config.c ├── i3bar.c ├── image.c ├── input.c ├── ipc.c ├── main.c ├── meson.build ├── render.c ├── status_line.c ├── swaybar-protocol.7.scd └── tray │ ├── host.c │ ├── icon.c │ ├── item.c │ ├── tray.c │ └── watcher.c ├── swaymsg ├── main.c ├── meson.build └── swaymsg.1.scd └── swaynag ├── config.c ├── main.c ├── meson.build ├── render.c ├── swaynag.1.scd ├── swaynag.5.scd ├── swaynag.c └── types.c /.builds/alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/.builds/alpine.yml -------------------------------------------------------------------------------- /.builds/archlinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/.builds/archlinux.yml -------------------------------------------------------------------------------- /.builds/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/.builds/freebsd.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/i3_compat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/.github/ISSUE_TEMPLATE/i3_compat.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/.mailmap -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.ar.md -------------------------------------------------------------------------------- /README.az.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.az.md -------------------------------------------------------------------------------- /README.cs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.cs.md -------------------------------------------------------------------------------- /README.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.de.md -------------------------------------------------------------------------------- /README.dk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.dk.md -------------------------------------------------------------------------------- /README.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.es.md -------------------------------------------------------------------------------- /README.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.fr.md -------------------------------------------------------------------------------- /README.ge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.ge.md -------------------------------------------------------------------------------- /README.gr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.gr.md -------------------------------------------------------------------------------- /README.hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.hi.md -------------------------------------------------------------------------------- /README.hu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.hu.md -------------------------------------------------------------------------------- /README.ir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.ir.md -------------------------------------------------------------------------------- /README.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.it.md -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.md -------------------------------------------------------------------------------- /README.nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.nl.md -------------------------------------------------------------------------------- /README.no.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.no.md -------------------------------------------------------------------------------- /README.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.pl.md -------------------------------------------------------------------------------- /README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.pt.md -------------------------------------------------------------------------------- /README.ro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.ro.md -------------------------------------------------------------------------------- /README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.ru.md -------------------------------------------------------------------------------- /README.sr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.sr.md -------------------------------------------------------------------------------- /README.sv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.sv.md -------------------------------------------------------------------------------- /README.tr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.tr.md -------------------------------------------------------------------------------- /README.uk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.uk.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /README.zh-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/README.zh-TW.md -------------------------------------------------------------------------------- /assets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/LICENSE -------------------------------------------------------------------------------- /assets/Sway_Logo+Text_Ver1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Logo+Text_Ver1.svg -------------------------------------------------------------------------------- /assets/Sway_Logo+Text_Ver1_1500x716.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Logo+Text_Ver1_1500x716.png -------------------------------------------------------------------------------- /assets/Sway_Logo+Text_Ver2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Logo+Text_Ver2.png -------------------------------------------------------------------------------- /assets/Sway_Logo+Text_Ver2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Logo+Text_Ver2.svg -------------------------------------------------------------------------------- /assets/Sway_Logo+Text_Ver3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Logo+Text_Ver3.png -------------------------------------------------------------------------------- /assets/Sway_Logo+Text_Ver3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Logo+Text_Ver3.svg -------------------------------------------------------------------------------- /assets/Sway_Logo+Text_Ver4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Logo+Text_Ver4.png -------------------------------------------------------------------------------- /assets/Sway_Logo+Text_Ver4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Logo+Text_Ver4.svg -------------------------------------------------------------------------------- /assets/Sway_Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Tree.png -------------------------------------------------------------------------------- /assets/Sway_Tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Tree.svg -------------------------------------------------------------------------------- /assets/Sway_Tree_1000x934.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Tree_1000x934.png -------------------------------------------------------------------------------- /assets/Sway_Wallpaper_Blue_1136x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Wallpaper_Blue_1136x640.png -------------------------------------------------------------------------------- /assets/Sway_Wallpaper_Blue_1136x640_Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Wallpaper_Blue_1136x640_Portrait.png -------------------------------------------------------------------------------- /assets/Sway_Wallpaper_Blue_1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Wallpaper_Blue_1366x768.png -------------------------------------------------------------------------------- /assets/Sway_Wallpaper_Blue_1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Wallpaper_Blue_1920x1080.png -------------------------------------------------------------------------------- /assets/Sway_Wallpaper_Blue_2048x1536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Wallpaper_Blue_2048x1536.png -------------------------------------------------------------------------------- /assets/Sway_Wallpaper_Blue_2048x1536_Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Wallpaper_Blue_2048x1536_Portrait.png -------------------------------------------------------------------------------- /assets/Sway_Wallpaper_Blue_768x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Wallpaper_Blue_768x1024.png -------------------------------------------------------------------------------- /assets/Sway_Wallpaper_Blue_768x1024_Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/assets/Sway_Wallpaper_Blue_768x1024_Portrait.png -------------------------------------------------------------------------------- /client/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/client/meson.build -------------------------------------------------------------------------------- /client/pool-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/client/pool-buffer.c -------------------------------------------------------------------------------- /common/cairo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/common/cairo.c -------------------------------------------------------------------------------- /common/gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/common/gesture.c -------------------------------------------------------------------------------- /common/ipc-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/common/ipc-client.c -------------------------------------------------------------------------------- /common/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/common/list.c -------------------------------------------------------------------------------- /common/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/common/log.c -------------------------------------------------------------------------------- /common/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/common/loop.c -------------------------------------------------------------------------------- /common/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/common/meson.build -------------------------------------------------------------------------------- /common/pango.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/common/pango.c -------------------------------------------------------------------------------- /common/stringop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/common/stringop.c -------------------------------------------------------------------------------- /common/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/common/util.c -------------------------------------------------------------------------------- /completions/bash/sway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/completions/bash/sway -------------------------------------------------------------------------------- /completions/bash/swaybar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/completions/bash/swaybar -------------------------------------------------------------------------------- /completions/bash/swaymsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/completions/bash/swaymsg -------------------------------------------------------------------------------- /completions/fish/sway.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/completions/fish/sway.fish -------------------------------------------------------------------------------- /completions/fish/swaymsg.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/completions/fish/swaymsg.fish -------------------------------------------------------------------------------- /completions/fish/swaynag.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/completions/fish/swaynag.fish -------------------------------------------------------------------------------- /completions/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/completions/meson.build -------------------------------------------------------------------------------- /completions/zsh/_sway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/completions/zsh/_sway -------------------------------------------------------------------------------- /completions/zsh/_swaybar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/completions/zsh/_swaybar -------------------------------------------------------------------------------- /completions/zsh/_swaymsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/completions/zsh/_swaymsg -------------------------------------------------------------------------------- /config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/config.in -------------------------------------------------------------------------------- /include/cairo_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/cairo_util.h -------------------------------------------------------------------------------- /include/gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/gesture.h -------------------------------------------------------------------------------- /include/ipc-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/ipc-client.h -------------------------------------------------------------------------------- /include/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/ipc.h -------------------------------------------------------------------------------- /include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/list.h -------------------------------------------------------------------------------- /include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/log.h -------------------------------------------------------------------------------- /include/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/loop.h -------------------------------------------------------------------------------- /include/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/meson.build -------------------------------------------------------------------------------- /include/pango.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/pango.h -------------------------------------------------------------------------------- /include/pool-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/pool-buffer.h -------------------------------------------------------------------------------- /include/stringop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/stringop.h -------------------------------------------------------------------------------- /include/sway/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/commands.h -------------------------------------------------------------------------------- /include/sway/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/config.h -------------------------------------------------------------------------------- /include/sway/criteria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/criteria.h -------------------------------------------------------------------------------- /include/sway/decoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/decoration.h -------------------------------------------------------------------------------- /include/sway/desktop/idle_inhibit_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/desktop/idle_inhibit_v1.h -------------------------------------------------------------------------------- /include/sway/desktop/launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/desktop/launcher.h -------------------------------------------------------------------------------- /include/sway/desktop/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/desktop/transaction.h -------------------------------------------------------------------------------- /include/sway/input/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/input/cursor.h -------------------------------------------------------------------------------- /include/sway/input/input-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/input/input-manager.h -------------------------------------------------------------------------------- /include/sway/input/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/input/keyboard.h -------------------------------------------------------------------------------- /include/sway/input/libinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/input/libinput.h -------------------------------------------------------------------------------- /include/sway/input/seat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/input/seat.h -------------------------------------------------------------------------------- /include/sway/input/switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/input/switch.h -------------------------------------------------------------------------------- /include/sway/input/tablet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/input/tablet.h -------------------------------------------------------------------------------- /include/sway/input/text_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/input/text_input.h -------------------------------------------------------------------------------- /include/sway/input/text_input_popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/input/text_input_popup.h -------------------------------------------------------------------------------- /include/sway/ipc-json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/ipc-json.h -------------------------------------------------------------------------------- /include/sway/ipc-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/ipc-server.h -------------------------------------------------------------------------------- /include/sway/layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/layers.h -------------------------------------------------------------------------------- /include/sway/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/lock.h -------------------------------------------------------------------------------- /include/sway/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/output.h -------------------------------------------------------------------------------- /include/sway/scene_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/scene_descriptor.h -------------------------------------------------------------------------------- /include/sway/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/server.h -------------------------------------------------------------------------------- /include/sway/sway_text_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/sway_text_node.h -------------------------------------------------------------------------------- /include/sway/swaynag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/swaynag.h -------------------------------------------------------------------------------- /include/sway/tree/arrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/tree/arrange.h -------------------------------------------------------------------------------- /include/sway/tree/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/tree/container.h -------------------------------------------------------------------------------- /include/sway/tree/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/tree/node.h -------------------------------------------------------------------------------- /include/sway/tree/root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/tree/root.h -------------------------------------------------------------------------------- /include/sway/tree/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/tree/view.h -------------------------------------------------------------------------------- /include/sway/tree/workspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/tree/workspace.h -------------------------------------------------------------------------------- /include/sway/xdg_decoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/xdg_decoration.h -------------------------------------------------------------------------------- /include/sway/xwayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/sway/xwayland.h -------------------------------------------------------------------------------- /include/swaybar/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/bar.h -------------------------------------------------------------------------------- /include/swaybar/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/config.h -------------------------------------------------------------------------------- /include/swaybar/i3bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/i3bar.h -------------------------------------------------------------------------------- /include/swaybar/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/image.h -------------------------------------------------------------------------------- /include/swaybar/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/input.h -------------------------------------------------------------------------------- /include/swaybar/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/ipc.h -------------------------------------------------------------------------------- /include/swaybar/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/render.h -------------------------------------------------------------------------------- /include/swaybar/status_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/status_line.h -------------------------------------------------------------------------------- /include/swaybar/tray/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/tray/host.h -------------------------------------------------------------------------------- /include/swaybar/tray/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/tray/icon.h -------------------------------------------------------------------------------- /include/swaybar/tray/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/tray/item.h -------------------------------------------------------------------------------- /include/swaybar/tray/tray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/tray/tray.h -------------------------------------------------------------------------------- /include/swaybar/tray/watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaybar/tray/watcher.h -------------------------------------------------------------------------------- /include/swaynag/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaynag/config.h -------------------------------------------------------------------------------- /include/swaynag/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaynag/render.h -------------------------------------------------------------------------------- /include/swaynag/swaynag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaynag/swaynag.h -------------------------------------------------------------------------------- /include/swaynag/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/swaynag/types.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/include/util.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/meson_options.txt -------------------------------------------------------------------------------- /protocols/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/protocols/meson.build -------------------------------------------------------------------------------- /protocols/wlr-layer-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/protocols/wlr-layer-shell-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/wlr-output-power-management-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/protocols/wlr-output-power-management-unstable-v1.xml -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/release.sh -------------------------------------------------------------------------------- /sway.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway.desktop -------------------------------------------------------------------------------- /sway/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands.c -------------------------------------------------------------------------------- /sway/commands/allow_tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/allow_tearing.c -------------------------------------------------------------------------------- /sway/commands/assign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/assign.c -------------------------------------------------------------------------------- /sway/commands/bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar.c -------------------------------------------------------------------------------- /sway/commands/bar/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/bind.c -------------------------------------------------------------------------------- /sway/commands/bar/binding_mode_indicator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/binding_mode_indicator.c -------------------------------------------------------------------------------- /sway/commands/bar/colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/colors.c -------------------------------------------------------------------------------- /sway/commands/bar/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/font.c -------------------------------------------------------------------------------- /sway/commands/bar/gaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/gaps.c -------------------------------------------------------------------------------- /sway/commands/bar/height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/height.c -------------------------------------------------------------------------------- /sway/commands/bar/hidden_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/hidden_state.c -------------------------------------------------------------------------------- /sway/commands/bar/icon_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/icon_theme.c -------------------------------------------------------------------------------- /sway/commands/bar/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/id.c -------------------------------------------------------------------------------- /sway/commands/bar/mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/mode.c -------------------------------------------------------------------------------- /sway/commands/bar/modifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/modifier.c -------------------------------------------------------------------------------- /sway/commands/bar/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/output.c -------------------------------------------------------------------------------- /sway/commands/bar/pango_markup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/pango_markup.c -------------------------------------------------------------------------------- /sway/commands/bar/position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/position.c -------------------------------------------------------------------------------- /sway/commands/bar/separator_symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/separator_symbol.c -------------------------------------------------------------------------------- /sway/commands/bar/status_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/status_command.c -------------------------------------------------------------------------------- /sway/commands/bar/status_edge_padding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/status_edge_padding.c -------------------------------------------------------------------------------- /sway/commands/bar/status_padding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/status_padding.c -------------------------------------------------------------------------------- /sway/commands/bar/strip_workspace_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/strip_workspace_name.c -------------------------------------------------------------------------------- /sway/commands/bar/strip_workspace_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/strip_workspace_numbers.c -------------------------------------------------------------------------------- /sway/commands/bar/swaybar_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/swaybar_command.c -------------------------------------------------------------------------------- /sway/commands/bar/tray_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/tray_bind.c -------------------------------------------------------------------------------- /sway/commands/bar/tray_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/tray_output.c -------------------------------------------------------------------------------- /sway/commands/bar/tray_padding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/tray_padding.c -------------------------------------------------------------------------------- /sway/commands/bar/workspace_buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/workspace_buttons.c -------------------------------------------------------------------------------- /sway/commands/bar/workspace_min_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/workspace_min_width.c -------------------------------------------------------------------------------- /sway/commands/bar/wrap_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bar/wrap_scroll.c -------------------------------------------------------------------------------- /sway/commands/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/bind.c -------------------------------------------------------------------------------- /sway/commands/border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/border.c -------------------------------------------------------------------------------- /sway/commands/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/client.c -------------------------------------------------------------------------------- /sway/commands/create_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/create_output.c -------------------------------------------------------------------------------- /sway/commands/default_border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/default_border.c -------------------------------------------------------------------------------- /sway/commands/default_floating_border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/default_floating_border.c -------------------------------------------------------------------------------- /sway/commands/default_orientation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/default_orientation.c -------------------------------------------------------------------------------- /sway/commands/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/exec.c -------------------------------------------------------------------------------- /sway/commands/exec_always.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/exec_always.c -------------------------------------------------------------------------------- /sway/commands/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/exit.c -------------------------------------------------------------------------------- /sway/commands/floating.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/floating.c -------------------------------------------------------------------------------- /sway/commands/floating_minmax_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/floating_minmax_size.c -------------------------------------------------------------------------------- /sway/commands/floating_modifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/floating_modifier.c -------------------------------------------------------------------------------- /sway/commands/focus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/focus.c -------------------------------------------------------------------------------- /sway/commands/focus_follows_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/focus_follows_mouse.c -------------------------------------------------------------------------------- /sway/commands/focus_on_window_activation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/focus_on_window_activation.c -------------------------------------------------------------------------------- /sway/commands/focus_wrapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/focus_wrapping.c -------------------------------------------------------------------------------- /sway/commands/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/font.c -------------------------------------------------------------------------------- /sway/commands/for_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/for_window.c -------------------------------------------------------------------------------- /sway/commands/force_display_urgency_hint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/force_display_urgency_hint.c -------------------------------------------------------------------------------- /sway/commands/force_focus_wrapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/force_focus_wrapping.c -------------------------------------------------------------------------------- /sway/commands/fullscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/fullscreen.c -------------------------------------------------------------------------------- /sway/commands/gaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/gaps.c -------------------------------------------------------------------------------- /sway/commands/gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/gesture.c -------------------------------------------------------------------------------- /sway/commands/hide_edge_borders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/hide_edge_borders.c -------------------------------------------------------------------------------- /sway/commands/include.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/include.c -------------------------------------------------------------------------------- /sway/commands/inhibit_idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/inhibit_idle.c -------------------------------------------------------------------------------- /sway/commands/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input.c -------------------------------------------------------------------------------- /sway/commands/input/accel_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/accel_profile.c -------------------------------------------------------------------------------- /sway/commands/input/calibration_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/calibration_matrix.c -------------------------------------------------------------------------------- /sway/commands/input/click_method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/click_method.c -------------------------------------------------------------------------------- /sway/commands/input/clickfinger_button_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/clickfinger_button_map.c -------------------------------------------------------------------------------- /sway/commands/input/drag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/drag.c -------------------------------------------------------------------------------- /sway/commands/input/drag_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/drag_lock.c -------------------------------------------------------------------------------- /sway/commands/input/dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/dwt.c -------------------------------------------------------------------------------- /sway/commands/input/dwtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/dwtp.c -------------------------------------------------------------------------------- /sway/commands/input/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/events.c -------------------------------------------------------------------------------- /sway/commands/input/left_handed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/left_handed.c -------------------------------------------------------------------------------- /sway/commands/input/map_from_region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/map_from_region.c -------------------------------------------------------------------------------- /sway/commands/input/map_to_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/map_to_output.c -------------------------------------------------------------------------------- /sway/commands/input/map_to_region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/map_to_region.c -------------------------------------------------------------------------------- /sway/commands/input/middle_emulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/middle_emulation.c -------------------------------------------------------------------------------- /sway/commands/input/natural_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/natural_scroll.c -------------------------------------------------------------------------------- /sway/commands/input/pointer_accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/pointer_accel.c -------------------------------------------------------------------------------- /sway/commands/input/repeat_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/repeat_delay.c -------------------------------------------------------------------------------- /sway/commands/input/repeat_rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/repeat_rate.c -------------------------------------------------------------------------------- /sway/commands/input/rotation_angle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/rotation_angle.c -------------------------------------------------------------------------------- /sway/commands/input/scroll_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/scroll_button.c -------------------------------------------------------------------------------- /sway/commands/input/scroll_button_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/scroll_button_lock.c -------------------------------------------------------------------------------- /sway/commands/input/scroll_factor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/scroll_factor.c -------------------------------------------------------------------------------- /sway/commands/input/scroll_method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/scroll_method.c -------------------------------------------------------------------------------- /sway/commands/input/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/tap.c -------------------------------------------------------------------------------- /sway/commands/input/tap_button_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/tap_button_map.c -------------------------------------------------------------------------------- /sway/commands/input/tool_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/tool_mode.c -------------------------------------------------------------------------------- /sway/commands/input/xkb_capslock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/xkb_capslock.c -------------------------------------------------------------------------------- /sway/commands/input/xkb_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/xkb_file.c -------------------------------------------------------------------------------- /sway/commands/input/xkb_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/xkb_layout.c -------------------------------------------------------------------------------- /sway/commands/input/xkb_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/xkb_model.c -------------------------------------------------------------------------------- /sway/commands/input/xkb_numlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/xkb_numlock.c -------------------------------------------------------------------------------- /sway/commands/input/xkb_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/xkb_options.c -------------------------------------------------------------------------------- /sway/commands/input/xkb_rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/xkb_rules.c -------------------------------------------------------------------------------- /sway/commands/input/xkb_switch_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/xkb_switch_layout.c -------------------------------------------------------------------------------- /sway/commands/input/xkb_variant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/input/xkb_variant.c -------------------------------------------------------------------------------- /sway/commands/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/kill.c -------------------------------------------------------------------------------- /sway/commands/layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/layout.c -------------------------------------------------------------------------------- /sway/commands/mark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/mark.c -------------------------------------------------------------------------------- /sway/commands/max_render_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/max_render_time.c -------------------------------------------------------------------------------- /sway/commands/mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/mode.c -------------------------------------------------------------------------------- /sway/commands/mouse_warping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/mouse_warping.c -------------------------------------------------------------------------------- /sway/commands/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/move.c -------------------------------------------------------------------------------- /sway/commands/new_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/new_float.c -------------------------------------------------------------------------------- /sway/commands/new_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/new_window.c -------------------------------------------------------------------------------- /sway/commands/no_focus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/no_focus.c -------------------------------------------------------------------------------- /sway/commands/nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/nop.c -------------------------------------------------------------------------------- /sway/commands/opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/opacity.c -------------------------------------------------------------------------------- /sway/commands/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output.c -------------------------------------------------------------------------------- /sway/commands/output/adaptive_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/adaptive_sync.c -------------------------------------------------------------------------------- /sway/commands/output/allow_tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/allow_tearing.c -------------------------------------------------------------------------------- /sway/commands/output/background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/background.c -------------------------------------------------------------------------------- /sway/commands/output/color_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/color_profile.c -------------------------------------------------------------------------------- /sway/commands/output/disable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/disable.c -------------------------------------------------------------------------------- /sway/commands/output/dpms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/dpms.c -------------------------------------------------------------------------------- /sway/commands/output/enable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/enable.c -------------------------------------------------------------------------------- /sway/commands/output/hdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/hdr.c -------------------------------------------------------------------------------- /sway/commands/output/max_render_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/max_render_time.c -------------------------------------------------------------------------------- /sway/commands/output/mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/mode.c -------------------------------------------------------------------------------- /sway/commands/output/position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/position.c -------------------------------------------------------------------------------- /sway/commands/output/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/power.c -------------------------------------------------------------------------------- /sway/commands/output/render_bit_depth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/render_bit_depth.c -------------------------------------------------------------------------------- /sway/commands/output/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/scale.c -------------------------------------------------------------------------------- /sway/commands/output/scale_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/scale_filter.c -------------------------------------------------------------------------------- /sway/commands/output/subpixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/subpixel.c -------------------------------------------------------------------------------- /sway/commands/output/toggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/toggle.c -------------------------------------------------------------------------------- /sway/commands/output/transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/transform.c -------------------------------------------------------------------------------- /sway/commands/output/unplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/output/unplug.c -------------------------------------------------------------------------------- /sway/commands/popup_during_fullscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/popup_during_fullscreen.c -------------------------------------------------------------------------------- /sway/commands/primary_selection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/primary_selection.c -------------------------------------------------------------------------------- /sway/commands/reload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/reload.c -------------------------------------------------------------------------------- /sway/commands/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/rename.c -------------------------------------------------------------------------------- /sway/commands/resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/resize.c -------------------------------------------------------------------------------- /sway/commands/scratchpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/scratchpad.c -------------------------------------------------------------------------------- /sway/commands/seat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/seat.c -------------------------------------------------------------------------------- /sway/commands/seat/attach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/seat/attach.c -------------------------------------------------------------------------------- /sway/commands/seat/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/seat/cursor.c -------------------------------------------------------------------------------- /sway/commands/seat/fallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/seat/fallback.c -------------------------------------------------------------------------------- /sway/commands/seat/hide_cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/seat/hide_cursor.c -------------------------------------------------------------------------------- /sway/commands/seat/idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/seat/idle.c -------------------------------------------------------------------------------- /sway/commands/seat/keyboard_grouping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/seat/keyboard_grouping.c -------------------------------------------------------------------------------- /sway/commands/seat/pointer_constraint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/seat/pointer_constraint.c -------------------------------------------------------------------------------- /sway/commands/seat/shortcuts_inhibitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/seat/shortcuts_inhibitor.c -------------------------------------------------------------------------------- /sway/commands/seat/xcursor_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/seat/xcursor_theme.c -------------------------------------------------------------------------------- /sway/commands/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/set.c -------------------------------------------------------------------------------- /sway/commands/shortcuts_inhibitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/shortcuts_inhibitor.c -------------------------------------------------------------------------------- /sway/commands/show_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/show_marks.c -------------------------------------------------------------------------------- /sway/commands/smart_borders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/smart_borders.c -------------------------------------------------------------------------------- /sway/commands/smart_gaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/smart_gaps.c -------------------------------------------------------------------------------- /sway/commands/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/split.c -------------------------------------------------------------------------------- /sway/commands/sticky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/sticky.c -------------------------------------------------------------------------------- /sway/commands/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/swap.c -------------------------------------------------------------------------------- /sway/commands/swaybg_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/swaybg_command.c -------------------------------------------------------------------------------- /sway/commands/swaynag_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/swaynag_command.c -------------------------------------------------------------------------------- /sway/commands/tiling_drag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/tiling_drag.c -------------------------------------------------------------------------------- /sway/commands/tiling_drag_threshold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/tiling_drag_threshold.c -------------------------------------------------------------------------------- /sway/commands/title_align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/title_align.c -------------------------------------------------------------------------------- /sway/commands/title_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/title_format.c -------------------------------------------------------------------------------- /sway/commands/titlebar_border_thickness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/titlebar_border_thickness.c -------------------------------------------------------------------------------- /sway/commands/titlebar_padding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/titlebar_padding.c -------------------------------------------------------------------------------- /sway/commands/unmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/unmark.c -------------------------------------------------------------------------------- /sway/commands/urgent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/urgent.c -------------------------------------------------------------------------------- /sway/commands/workspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/workspace.c -------------------------------------------------------------------------------- /sway/commands/workspace_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/workspace_layout.c -------------------------------------------------------------------------------- /sway/commands/ws_auto_back_and_forth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/ws_auto_back_and_forth.c -------------------------------------------------------------------------------- /sway/commands/xwayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/commands/xwayland.c -------------------------------------------------------------------------------- /sway/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/config.c -------------------------------------------------------------------------------- /sway/config/bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/config/bar.c -------------------------------------------------------------------------------- /sway/config/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/config/input.c -------------------------------------------------------------------------------- /sway/config/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/config/output.c -------------------------------------------------------------------------------- /sway/config/seat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/config/seat.c -------------------------------------------------------------------------------- /sway/criteria.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/criteria.c -------------------------------------------------------------------------------- /sway/decoration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/decoration.c -------------------------------------------------------------------------------- /sway/desktop/idle_inhibit_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/desktop/idle_inhibit_v1.c -------------------------------------------------------------------------------- /sway/desktop/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/desktop/launcher.c -------------------------------------------------------------------------------- /sway/desktop/layer_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/desktop/layer_shell.c -------------------------------------------------------------------------------- /sway/desktop/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/desktop/output.c -------------------------------------------------------------------------------- /sway/desktop/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/desktop/tearing.c -------------------------------------------------------------------------------- /sway/desktop/transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/desktop/transaction.c -------------------------------------------------------------------------------- /sway/desktop/xdg_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/desktop/xdg_shell.c -------------------------------------------------------------------------------- /sway/desktop/xwayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/desktop/xwayland.c -------------------------------------------------------------------------------- /sway/input/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/cursor.c -------------------------------------------------------------------------------- /sway/input/input-manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/input-manager.c -------------------------------------------------------------------------------- /sway/input/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/keyboard.c -------------------------------------------------------------------------------- /sway/input/libinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/libinput.c -------------------------------------------------------------------------------- /sway/input/seat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/seat.c -------------------------------------------------------------------------------- /sway/input/seatop_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/seatop_default.c -------------------------------------------------------------------------------- /sway/input/seatop_down.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/seatop_down.c -------------------------------------------------------------------------------- /sway/input/seatop_move_floating.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/seatop_move_floating.c -------------------------------------------------------------------------------- /sway/input/seatop_move_tiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/seatop_move_tiling.c -------------------------------------------------------------------------------- /sway/input/seatop_resize_floating.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/seatop_resize_floating.c -------------------------------------------------------------------------------- /sway/input/seatop_resize_tiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/seatop_resize_tiling.c -------------------------------------------------------------------------------- /sway/input/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/switch.c -------------------------------------------------------------------------------- /sway/input/tablet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/tablet.c -------------------------------------------------------------------------------- /sway/input/text_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/input/text_input.c -------------------------------------------------------------------------------- /sway/ipc-json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/ipc-json.c -------------------------------------------------------------------------------- /sway/ipc-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/ipc-server.c -------------------------------------------------------------------------------- /sway/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/lock.c -------------------------------------------------------------------------------- /sway/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/main.c -------------------------------------------------------------------------------- /sway/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/meson.build -------------------------------------------------------------------------------- /sway/realtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/realtime.c -------------------------------------------------------------------------------- /sway/scene_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/scene_descriptor.c -------------------------------------------------------------------------------- /sway/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/server.c -------------------------------------------------------------------------------- /sway/sway-bar.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/sway-bar.5.scd -------------------------------------------------------------------------------- /sway/sway-input.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/sway-input.5.scd -------------------------------------------------------------------------------- /sway/sway-ipc.7.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/sway-ipc.7.scd -------------------------------------------------------------------------------- /sway/sway-output.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/sway-output.5.scd -------------------------------------------------------------------------------- /sway/sway.1.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/sway.1.scd -------------------------------------------------------------------------------- /sway/sway.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/sway.5.scd -------------------------------------------------------------------------------- /sway/sway_text_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/sway_text_node.c -------------------------------------------------------------------------------- /sway/swaynag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/swaynag.c -------------------------------------------------------------------------------- /sway/tree/arrange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/tree/arrange.c -------------------------------------------------------------------------------- /sway/tree/container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/tree/container.c -------------------------------------------------------------------------------- /sway/tree/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/tree/node.c -------------------------------------------------------------------------------- /sway/tree/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/tree/output.c -------------------------------------------------------------------------------- /sway/tree/root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/tree/root.c -------------------------------------------------------------------------------- /sway/tree/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/tree/view.c -------------------------------------------------------------------------------- /sway/tree/workspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/tree/workspace.c -------------------------------------------------------------------------------- /sway/xdg_activation_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/xdg_activation_v1.c -------------------------------------------------------------------------------- /sway/xdg_decoration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/sway/xdg_decoration.c -------------------------------------------------------------------------------- /swaybar/bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/bar.c -------------------------------------------------------------------------------- /swaybar/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/config.c -------------------------------------------------------------------------------- /swaybar/i3bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/i3bar.c -------------------------------------------------------------------------------- /swaybar/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/image.c -------------------------------------------------------------------------------- /swaybar/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/input.c -------------------------------------------------------------------------------- /swaybar/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/ipc.c -------------------------------------------------------------------------------- /swaybar/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/main.c -------------------------------------------------------------------------------- /swaybar/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/meson.build -------------------------------------------------------------------------------- /swaybar/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/render.c -------------------------------------------------------------------------------- /swaybar/status_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/status_line.c -------------------------------------------------------------------------------- /swaybar/swaybar-protocol.7.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/swaybar-protocol.7.scd -------------------------------------------------------------------------------- /swaybar/tray/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/tray/host.c -------------------------------------------------------------------------------- /swaybar/tray/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/tray/icon.c -------------------------------------------------------------------------------- /swaybar/tray/item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/tray/item.c -------------------------------------------------------------------------------- /swaybar/tray/tray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/tray/tray.c -------------------------------------------------------------------------------- /swaybar/tray/watcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaybar/tray/watcher.c -------------------------------------------------------------------------------- /swaymsg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaymsg/main.c -------------------------------------------------------------------------------- /swaymsg/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaymsg/meson.build -------------------------------------------------------------------------------- /swaymsg/swaymsg.1.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaymsg/swaymsg.1.scd -------------------------------------------------------------------------------- /swaynag/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaynag/config.c -------------------------------------------------------------------------------- /swaynag/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaynag/main.c -------------------------------------------------------------------------------- /swaynag/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaynag/meson.build -------------------------------------------------------------------------------- /swaynag/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaynag/render.c -------------------------------------------------------------------------------- /swaynag/swaynag.1.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaynag/swaynag.1.scd -------------------------------------------------------------------------------- /swaynag/swaynag.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaynag/swaynag.5.scd -------------------------------------------------------------------------------- /swaynag/swaynag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaynag/swaynag.c -------------------------------------------------------------------------------- /swaynag/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swaywm/sway/HEAD/swaynag/types.c --------------------------------------------------------------------------------