├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── others.md └── workflows │ ├── ci.yaml │ └── mandoc.yaml ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config.h.in ├── locale ├── meson.build └── ro │ └── LC_MESSAGES │ ├── wf-plugin-alpha.po │ ├── wf-plugin-animate.po │ ├── wf-plugin-autostart.po │ ├── wf-plugin-blur.po │ ├── wf-plugin-command.po │ ├── wf-plugin-core.po │ ├── wf-plugin-cube.po │ ├── wf-plugin-decoration.po │ ├── wf-plugin-expo.po │ ├── wf-plugin-extra-gestures.po │ ├── wf-plugin-fast-switcher.po │ ├── wf-plugin-fisheye.po │ ├── wf-plugin-foreign-toplevel.po │ ├── wf-plugin-grid.po │ ├── wf-plugin-gtk-shell.po │ ├── wf-plugin-idle.po │ ├── wf-plugin-input-device.po │ ├── wf-plugin-input-method-v1.po │ ├── wf-plugin-input.po │ ├── wf-plugin-invert.po │ ├── wf-plugin-ipc-rules.po │ ├── wf-plugin-ipc.po │ ├── wf-plugin-move.po │ ├── wf-plugin-oswitch.po │ ├── wf-plugin-place.po │ ├── wf-plugin-preserve-output.po │ ├── wf-plugin-resize.po │ ├── wf-plugin-scale-title-filter.po │ ├── wf-plugin-scale.po │ ├── wf-plugin-security-context-v1.po │ ├── wf-plugin-session-lock.po │ ├── wf-plugin-shortcuts-inhibit.po │ ├── wf-plugin-simple-tile.po │ ├── wf-plugin-switcher.po │ ├── wf-plugin-vk-color-management.po │ ├── wf-plugin-vswipe.po │ ├── wf-plugin-vswitch.po │ ├── wf-plugin-wayfire-shell.po │ ├── wf-plugin-window-rules.po │ ├── wf-plugin-wm-actions.po │ ├── wf-plugin-wobbly.po │ ├── wf-plugin-workarounds.po │ ├── wf-plugin-wrot.po │ ├── wf-plugin-wsets.po │ ├── wf-plugin-xdg-activation.po │ └── wf-plugin-zoom.po ├── man ├── meson.build └── wayfire.1.in ├── meson.build ├── meson_options.txt ├── metadata ├── alpha.xml ├── animate.xml ├── autostart.xml ├── blur.xml ├── command.xml ├── core.xml ├── cube.xml ├── decoration.xml ├── expo.xml ├── ext-toplevel.xml ├── extra-gestures.xml ├── fast-switcher.xml ├── fisheye.xml ├── foreign-toplevel.xml ├── grid.xml ├── gtk-shell.xml ├── idle.xml ├── input-device.xml ├── input-method-v1.xml ├── input.xml ├── invert.xml ├── ipc-rules.xml ├── ipc.xml ├── meson.build ├── move.xml ├── oswitch.xml ├── output.xml ├── place.xml ├── preserve-output.xml ├── resize.xml ├── scale-title-filter.xml ├── scale.xml ├── security-context-v1.xml ├── session-lock.xml ├── shortcuts-inhibit.xml ├── simple-tile.xml ├── switcher.xml ├── vk-color-management.xml ├── vswipe.xml ├── vswitch.xml ├── wayfire-shell.xml ├── window-rules.xml ├── wm-actions.xml ├── wobbly.xml ├── workarounds.xml ├── wrot.xml ├── wsets.xml ├── xdg-activation.xml └── zoom.xml ├── plugins ├── animate │ ├── animate.cpp │ ├── animate.hpp │ ├── basic_animations.hpp │ ├── fire │ │ ├── fire.cpp │ │ ├── fire.hpp │ │ ├── particle.cpp │ │ ├── particle.hpp │ │ └── shaders.hpp │ ├── meson.build │ ├── shaders │ │ ├── frag.glsl │ │ └── vertex.glsl │ ├── spin.hpp │ ├── squeezimize.hpp │ ├── system_fade.hpp │ ├── unmapped-view-node.hpp │ └── zap.hpp ├── blur │ ├── blur-base.cpp │ ├── blur.cpp │ ├── blur.hpp │ ├── bokeh.cpp │ ├── box.cpp │ ├── gaussian.cpp │ ├── kawase.cpp │ └── meson.build ├── common │ ├── meson.build │ ├── move-drag-interface.cpp │ ├── wayfire │ │ └── plugins │ │ │ └── common │ │ │ ├── cairo-util.hpp │ │ │ ├── geometry-animation.hpp │ │ │ ├── input-grab.hpp │ │ │ ├── key-repeat.hpp │ │ │ ├── move-drag-interface.hpp │ │ │ ├── preview-indication.hpp │ │ │ ├── shared-core-data.hpp │ │ │ ├── simple-text-node.hpp │ │ │ ├── util.hpp │ │ │ └── workspace-wall.hpp │ └── workspace-wall.cpp ├── cube │ ├── cube-background.hpp │ ├── cube-control-signal.hpp │ ├── cube.cpp │ ├── cube.hpp │ ├── cubemap-shaders.tpp │ ├── cubemap.cpp │ ├── cubemap.hpp │ ├── meson.build │ ├── shaders-3-2.tpp │ ├── shaders.tpp │ ├── simple-background.cpp │ ├── simple-background.hpp │ ├── skydome.cpp │ └── skydome.hpp ├── decor │ ├── deco-button.cpp │ ├── deco-button.hpp │ ├── deco-layout.cpp │ ├── deco-layout.hpp │ ├── deco-subsurface.cpp │ ├── deco-subsurface.hpp │ ├── deco-theme.cpp │ ├── deco-theme.hpp │ ├── decoration.cpp │ └── meson.build ├── grid │ ├── grid.cpp │ ├── meson.build │ └── wayfire │ │ └── plugins │ │ ├── crossfade.hpp │ │ └── grid.hpp ├── ipc-rules │ ├── ipc-events.hpp │ ├── ipc-input-methods.hpp │ ├── ipc-rules-common.hpp │ ├── ipc-rules.cpp │ ├── ipc-utility-methods.hpp │ └── meson.build ├── ipc │ ├── ipc.cpp │ ├── ipc.hpp │ ├── meson.build │ ├── stipc.cpp │ └── wayfire │ │ └── plugins │ │ └── ipc │ │ ├── ipc-activator.hpp │ │ ├── ipc-helpers.hpp │ │ └── ipc-method-repository.hpp ├── meson.build ├── pch │ └── plugin_pch.hpp ├── protocols │ ├── ext-toplevel.cpp │ ├── foreign-toplevel.cpp │ ├── gtk-shell.cpp │ ├── gtk-shell.hpp │ ├── input-method-v1.cpp │ ├── input-method-v1.hpp │ ├── meson.build │ ├── security-context-v1.cpp │ ├── session-lock.cpp │ ├── shortcuts-inhibit.cpp │ ├── text-input-v1-v3.hpp │ ├── toplevel-common.hpp │ ├── wayfire-shell.cpp │ └── xdg-activation.cpp ├── scale │ ├── meson.build │ ├── scale-title-filter.cpp │ ├── scale-title-overlay.cpp │ ├── scale-title-overlay.hpp │ ├── scale.cpp │ ├── scale.hpp │ └── wayfire │ │ └── plugins │ │ └── scale-signal.hpp ├── single_plugins │ ├── alpha.cpp │ ├── autostart.cpp │ ├── command.cpp │ ├── expo.cpp │ ├── extra-gestures.cpp │ ├── fast-switcher.cpp │ ├── fisheye.cpp │ ├── idle.cpp │ ├── invert.cpp │ ├── meson.build │ ├── move.cpp │ ├── oswitch.cpp │ ├── place.cpp │ ├── preserve-output.cpp │ ├── resize.cpp │ ├── switcher.cpp │ ├── vk-color-management.cpp │ ├── vswipe-processing.hpp │ ├── vswipe.cpp │ ├── wrot.cpp │ ├── wsets.cpp │ ├── xkb-bindings.cpp │ └── zoom.cpp ├── tile │ ├── meson.build │ ├── tile-dragging.hpp │ ├── tile-ipc.hpp │ ├── tile-plugin.cpp │ ├── tile-wset.hpp │ ├── tree-controller.cpp │ ├── tree-controller.hpp │ ├── tree.cpp │ └── tree.hpp ├── vswitch │ ├── meson.build │ ├── vswitch.cpp │ └── wayfire │ │ └── plugins │ │ └── vswitch.hpp ├── window-rules │ ├── lambda-rules-registration.hpp │ ├── meson.build │ ├── view-action-interface.cpp │ ├── view-action-interface.hpp │ └── window-rules.cpp ├── wm-actions │ ├── meson.build │ ├── wm-actions-signals.hpp │ └── wm-actions.cpp └── wobbly │ ├── meson.build │ ├── wayfire │ └── plugins │ │ └── wobbly │ │ └── wobbly-signal.hpp │ ├── wobbly.c │ ├── wobbly.cpp │ └── wobbly.h ├── proto ├── gtk-shell.xml ├── meson.build ├── wayfire-shell-unstable-v2.xml ├── wlr-layer-shell-unstable-v1.xml └── wlr-output-power-management-unstable-v1.xml ├── src ├── api │ └── wayfire │ │ ├── bindings-repository.hpp │ │ ├── bindings.hpp │ │ ├── compositor-view.hpp │ │ ├── config-backend.hpp │ │ ├── core.hpp │ │ ├── dassert.hpp │ │ ├── debug.hpp │ │ ├── geometry.hpp │ │ ├── idle.hpp │ │ ├── img.hpp │ │ ├── input-device.hpp │ │ ├── matcher.hpp │ │ ├── nonstd │ │ ├── observer_ptr.h │ │ ├── reverse.hpp │ │ ├── tracking-allocator.hpp │ │ ├── wlroots-full.hpp │ │ └── wlroots.hpp │ │ ├── object.hpp │ │ ├── opengl.hpp │ │ ├── option-wrapper.hpp │ │ ├── output-layout.hpp │ │ ├── output.hpp │ │ ├── per-output-plugin.hpp │ │ ├── plugin.hpp │ │ ├── region.hpp │ │ ├── render-manager.hpp │ │ ├── render.hpp │ │ ├── scene-input.hpp │ │ ├── scene-operations.hpp │ │ ├── scene-render.hpp │ │ ├── scene.hpp │ │ ├── seat.hpp │ │ ├── signal-definitions.hpp │ │ ├── signal-provider.hpp │ │ ├── toplevel-view.hpp │ │ ├── toplevel.hpp │ │ ├── txn │ │ ├── transaction-manager.hpp │ │ ├── transaction-object.hpp │ │ └── transaction.hpp │ │ ├── unstable │ │ ├── translation-node.hpp │ │ ├── wlr-subsurface-controller.hpp │ │ ├── wlr-surface-controller.hpp │ │ ├── wlr-surface-node.hpp │ │ ├── wlr-text-input-v3-popup.hpp │ │ ├── wlr-view-events.hpp │ │ ├── wlr-view-keyboard-interaction.hpp │ │ ├── xdg-toplevel-base.hpp │ │ └── xwl-toplevel-base.hpp │ │ ├── util.hpp │ │ ├── view-access-interface.hpp │ │ ├── view-helpers.hpp │ │ ├── view-transform.hpp │ │ ├── view.hpp │ │ ├── window-manager.hpp │ │ ├── workarea.hpp │ │ ├── workspace-set.hpp │ │ └── workspace-stream.hpp ├── core │ ├── core-impl.hpp │ ├── core.cpp │ ├── gldebug.hpp │ ├── idle.cpp │ ├── img.cpp │ ├── matcher.cpp │ ├── object.cpp │ ├── opengl-priv.hpp │ ├── opengl.cpp │ ├── output-layout-priv.hpp │ ├── output-layout.cpp │ ├── plugin-loader.cpp │ ├── plugin-loader.hpp │ ├── plugin.cpp │ ├── scene-priv.hpp │ ├── scene.cpp │ ├── seat │ │ ├── bindings-repository-impl.hpp │ │ ├── bindings-repository.cpp │ │ ├── cursor.cpp │ │ ├── cursor.hpp │ │ ├── drag-icon.cpp │ │ ├── drag-icon.hpp │ │ ├── hotspot-manager.cpp │ │ ├── hotspot-manager.hpp │ │ ├── input-manager.cpp │ │ ├── input-manager.hpp │ │ ├── input-method-popup.cpp │ │ ├── input-method-relay.cpp │ │ ├── input-method-relay.hpp │ │ ├── keyboard.cpp │ │ ├── keyboard.hpp │ │ ├── pointer.cpp │ │ ├── pointer.hpp │ │ ├── pointing-device.cpp │ │ ├── pointing-device.hpp │ │ ├── seat-impl.hpp │ │ ├── seat.cpp │ │ ├── switch.cpp │ │ ├── switch.hpp │ │ ├── tablet.cpp │ │ ├── tablet.hpp │ │ ├── touch.cpp │ │ └── touch.hpp │ ├── shaders.tpp │ ├── txn │ │ ├── transaction-manager-impl.hpp │ │ ├── transaction-manager.cpp │ │ └── transaction.cpp │ ├── view-access-interface.cpp │ ├── window-manager.cpp │ ├── wm.cpp │ └── wm.hpp ├── debug.cpp ├── default-config-backend.cpp ├── geometry.cpp ├── main.cpp ├── main.hpp ├── meson.build ├── output │ ├── output-impl.hpp │ ├── output.cpp │ ├── promotion-manager.hpp │ ├── render-manager.cpp │ ├── workarea.cpp │ ├── workspace-impl.cpp │ └── workspace-stream.cpp ├── pch │ └── pch.h ├── region.cpp ├── render.cpp ├── util.cpp ├── version │ ├── git-branch.cpp.in │ └── git-commit.cpp.in ├── view │ ├── compositor-view.cpp │ ├── layer-shell │ │ ├── layer-shell-node.cpp │ │ ├── layer-shell-node.hpp │ │ └── layer-shell.cpp │ ├── toplevel-node.cpp │ ├── toplevel-node.hpp │ ├── toplevel-view.cpp │ ├── translation-node.cpp │ ├── view-3d.cpp │ ├── view-impl.cpp │ ├── view-impl.hpp │ ├── view.cpp │ ├── wlr-subsurface-controller.cpp │ ├── wlr-surface-controller.cpp │ ├── wlr-surface-node.cpp │ ├── wlr-surface-pointer-interaction.hpp │ ├── wlr-surface-touch-interaction.cpp │ ├── xdg-shell.cpp │ ├── xdg-shell.hpp │ ├── xdg-shell │ │ ├── xdg-toplevel-view.cpp │ │ ├── xdg-toplevel-view.hpp │ │ ├── xdg-toplevel.cpp │ │ └── xdg-toplevel.hpp │ ├── xwayland.cpp │ └── xwayland │ │ ├── xwayland-helpers.cpp │ │ ├── xwayland-helpers.hpp │ │ ├── xwayland-toplevel-view.cpp │ │ ├── xwayland-toplevel-view.hpp │ │ ├── xwayland-toplevel.cpp │ │ ├── xwayland-toplevel.hpp │ │ ├── xwayland-unmanaged-view.hpp │ │ ├── xwayland-view-base.cpp │ │ └── xwayland-view-base.hpp └── wl-listener-wrapper.tpp ├── subprojects └── yyjson.wrap ├── test ├── geometry │ ├── geometry_test.cpp │ └── meson.build ├── meson.build ├── misc │ ├── meson.build │ ├── safe-list-test.cpp │ └── tracking-allocator.cpp └── txn │ ├── meson.build │ ├── transaction-manager-test.cpp │ ├── transaction-test-object.hpp │ └── transaction-test.cpp ├── uncrustify.ini ├── util ├── make_pots.py ├── strip_po_comments.py └── wayfire-itstool.xml ├── wayfire-portals.conf ├── wayfire.desktop └── wayfire.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/.github/ISSUE_TEMPLATE/others.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/mandoc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/.github/workflows/mandoc.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/README.md -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/config.h.in -------------------------------------------------------------------------------- /locale/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/meson.build -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-alpha.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-alpha.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-animate.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-animate.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-autostart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-autostart.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-blur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-blur.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-command.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-command.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-core.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-core.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-cube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-cube.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-decoration.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-decoration.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-expo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-expo.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-extra-gestures.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-extra-gestures.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-fast-switcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-fast-switcher.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-fisheye.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-fisheye.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-foreign-toplevel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-foreign-toplevel.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-grid.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-gtk-shell.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-gtk-shell.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-idle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-idle.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-input-device.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-input-device.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-input-method-v1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-input-method-v1.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-input.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-input.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-invert.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-invert.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-ipc-rules.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-ipc-rules.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-ipc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-ipc.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-move.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-move.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-oswitch.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-oswitch.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-place.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-place.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-preserve-output.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-preserve-output.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-resize.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-resize.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-scale-title-filter.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-scale-title-filter.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-scale.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-scale.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-security-context-v1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-security-context-v1.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-session-lock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-session-lock.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-shortcuts-inhibit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-shortcuts-inhibit.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-simple-tile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-simple-tile.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-switcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-switcher.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-vk-color-management.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-vk-color-management.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-vswipe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-vswipe.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-vswitch.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-vswitch.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-wayfire-shell.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-wayfire-shell.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-window-rules.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-window-rules.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-wm-actions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-wm-actions.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-wobbly.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-wobbly.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-workarounds.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-workarounds.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-wrot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-wrot.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-wsets.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-wsets.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-xdg-activation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-xdg-activation.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/wf-plugin-zoom.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/locale/ro/LC_MESSAGES/wf-plugin-zoom.po -------------------------------------------------------------------------------- /man/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/man/meson.build -------------------------------------------------------------------------------- /man/wayfire.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/man/wayfire.1.in -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/meson_options.txt -------------------------------------------------------------------------------- /metadata/alpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/alpha.xml -------------------------------------------------------------------------------- /metadata/animate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/animate.xml -------------------------------------------------------------------------------- /metadata/autostart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/autostart.xml -------------------------------------------------------------------------------- /metadata/blur.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/blur.xml -------------------------------------------------------------------------------- /metadata/command.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/command.xml -------------------------------------------------------------------------------- /metadata/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/core.xml -------------------------------------------------------------------------------- /metadata/cube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/cube.xml -------------------------------------------------------------------------------- /metadata/decoration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/decoration.xml -------------------------------------------------------------------------------- /metadata/expo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/expo.xml -------------------------------------------------------------------------------- /metadata/ext-toplevel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/ext-toplevel.xml -------------------------------------------------------------------------------- /metadata/extra-gestures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/extra-gestures.xml -------------------------------------------------------------------------------- /metadata/fast-switcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/fast-switcher.xml -------------------------------------------------------------------------------- /metadata/fisheye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/fisheye.xml -------------------------------------------------------------------------------- /metadata/foreign-toplevel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/foreign-toplevel.xml -------------------------------------------------------------------------------- /metadata/grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/grid.xml -------------------------------------------------------------------------------- /metadata/gtk-shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/gtk-shell.xml -------------------------------------------------------------------------------- /metadata/idle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/idle.xml -------------------------------------------------------------------------------- /metadata/input-device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/input-device.xml -------------------------------------------------------------------------------- /metadata/input-method-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/input-method-v1.xml -------------------------------------------------------------------------------- /metadata/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/input.xml -------------------------------------------------------------------------------- /metadata/invert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/invert.xml -------------------------------------------------------------------------------- /metadata/ipc-rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/ipc-rules.xml -------------------------------------------------------------------------------- /metadata/ipc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/ipc.xml -------------------------------------------------------------------------------- /metadata/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/meson.build -------------------------------------------------------------------------------- /metadata/move.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/move.xml -------------------------------------------------------------------------------- /metadata/oswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/oswitch.xml -------------------------------------------------------------------------------- /metadata/output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/output.xml -------------------------------------------------------------------------------- /metadata/place.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/place.xml -------------------------------------------------------------------------------- /metadata/preserve-output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/preserve-output.xml -------------------------------------------------------------------------------- /metadata/resize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/resize.xml -------------------------------------------------------------------------------- /metadata/scale-title-filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/scale-title-filter.xml -------------------------------------------------------------------------------- /metadata/scale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/scale.xml -------------------------------------------------------------------------------- /metadata/security-context-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/security-context-v1.xml -------------------------------------------------------------------------------- /metadata/session-lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/session-lock.xml -------------------------------------------------------------------------------- /metadata/shortcuts-inhibit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/shortcuts-inhibit.xml -------------------------------------------------------------------------------- /metadata/simple-tile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/simple-tile.xml -------------------------------------------------------------------------------- /metadata/switcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/switcher.xml -------------------------------------------------------------------------------- /metadata/vk-color-management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/vk-color-management.xml -------------------------------------------------------------------------------- /metadata/vswipe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/vswipe.xml -------------------------------------------------------------------------------- /metadata/vswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/vswitch.xml -------------------------------------------------------------------------------- /metadata/wayfire-shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/wayfire-shell.xml -------------------------------------------------------------------------------- /metadata/window-rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/window-rules.xml -------------------------------------------------------------------------------- /metadata/wm-actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/wm-actions.xml -------------------------------------------------------------------------------- /metadata/wobbly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/wobbly.xml -------------------------------------------------------------------------------- /metadata/workarounds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/workarounds.xml -------------------------------------------------------------------------------- /metadata/wrot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/wrot.xml -------------------------------------------------------------------------------- /metadata/wsets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/wsets.xml -------------------------------------------------------------------------------- /metadata/xdg-activation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/xdg-activation.xml -------------------------------------------------------------------------------- /metadata/zoom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/metadata/zoom.xml -------------------------------------------------------------------------------- /plugins/animate/animate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/animate.cpp -------------------------------------------------------------------------------- /plugins/animate/animate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/animate.hpp -------------------------------------------------------------------------------- /plugins/animate/basic_animations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/basic_animations.hpp -------------------------------------------------------------------------------- /plugins/animate/fire/fire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/fire/fire.cpp -------------------------------------------------------------------------------- /plugins/animate/fire/fire.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/fire/fire.hpp -------------------------------------------------------------------------------- /plugins/animate/fire/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/fire/particle.cpp -------------------------------------------------------------------------------- /plugins/animate/fire/particle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/fire/particle.hpp -------------------------------------------------------------------------------- /plugins/animate/fire/shaders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/fire/shaders.hpp -------------------------------------------------------------------------------- /plugins/animate/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/meson.build -------------------------------------------------------------------------------- /plugins/animate/shaders/frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/shaders/frag.glsl -------------------------------------------------------------------------------- /plugins/animate/shaders/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/shaders/vertex.glsl -------------------------------------------------------------------------------- /plugins/animate/spin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/spin.hpp -------------------------------------------------------------------------------- /plugins/animate/squeezimize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/squeezimize.hpp -------------------------------------------------------------------------------- /plugins/animate/system_fade.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/system_fade.hpp -------------------------------------------------------------------------------- /plugins/animate/unmapped-view-node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/unmapped-view-node.hpp -------------------------------------------------------------------------------- /plugins/animate/zap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/animate/zap.hpp -------------------------------------------------------------------------------- /plugins/blur/blur-base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/blur/blur-base.cpp -------------------------------------------------------------------------------- /plugins/blur/blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/blur/blur.cpp -------------------------------------------------------------------------------- /plugins/blur/blur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/blur/blur.hpp -------------------------------------------------------------------------------- /plugins/blur/bokeh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/blur/bokeh.cpp -------------------------------------------------------------------------------- /plugins/blur/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/blur/box.cpp -------------------------------------------------------------------------------- /plugins/blur/gaussian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/blur/gaussian.cpp -------------------------------------------------------------------------------- /plugins/blur/kawase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/blur/kawase.cpp -------------------------------------------------------------------------------- /plugins/blur/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/blur/meson.build -------------------------------------------------------------------------------- /plugins/common/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/meson.build -------------------------------------------------------------------------------- /plugins/common/move-drag-interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/move-drag-interface.cpp -------------------------------------------------------------------------------- /plugins/common/wayfire/plugins/common/cairo-util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/wayfire/plugins/common/cairo-util.hpp -------------------------------------------------------------------------------- /plugins/common/wayfire/plugins/common/geometry-animation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/wayfire/plugins/common/geometry-animation.hpp -------------------------------------------------------------------------------- /plugins/common/wayfire/plugins/common/input-grab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/wayfire/plugins/common/input-grab.hpp -------------------------------------------------------------------------------- /plugins/common/wayfire/plugins/common/key-repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/wayfire/plugins/common/key-repeat.hpp -------------------------------------------------------------------------------- /plugins/common/wayfire/plugins/common/move-drag-interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/wayfire/plugins/common/move-drag-interface.hpp -------------------------------------------------------------------------------- /plugins/common/wayfire/plugins/common/preview-indication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/wayfire/plugins/common/preview-indication.hpp -------------------------------------------------------------------------------- /plugins/common/wayfire/plugins/common/shared-core-data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/wayfire/plugins/common/shared-core-data.hpp -------------------------------------------------------------------------------- /plugins/common/wayfire/plugins/common/simple-text-node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/wayfire/plugins/common/simple-text-node.hpp -------------------------------------------------------------------------------- /plugins/common/wayfire/plugins/common/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/wayfire/plugins/common/util.hpp -------------------------------------------------------------------------------- /plugins/common/wayfire/plugins/common/workspace-wall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/wayfire/plugins/common/workspace-wall.hpp -------------------------------------------------------------------------------- /plugins/common/workspace-wall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/common/workspace-wall.cpp -------------------------------------------------------------------------------- /plugins/cube/cube-background.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/cube-background.hpp -------------------------------------------------------------------------------- /plugins/cube/cube-control-signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/cube-control-signal.hpp -------------------------------------------------------------------------------- /plugins/cube/cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/cube.cpp -------------------------------------------------------------------------------- /plugins/cube/cube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/cube.hpp -------------------------------------------------------------------------------- /plugins/cube/cubemap-shaders.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/cubemap-shaders.tpp -------------------------------------------------------------------------------- /plugins/cube/cubemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/cubemap.cpp -------------------------------------------------------------------------------- /plugins/cube/cubemap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/cubemap.hpp -------------------------------------------------------------------------------- /plugins/cube/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/meson.build -------------------------------------------------------------------------------- /plugins/cube/shaders-3-2.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/shaders-3-2.tpp -------------------------------------------------------------------------------- /plugins/cube/shaders.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/shaders.tpp -------------------------------------------------------------------------------- /plugins/cube/simple-background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/simple-background.cpp -------------------------------------------------------------------------------- /plugins/cube/simple-background.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/simple-background.hpp -------------------------------------------------------------------------------- /plugins/cube/skydome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/skydome.cpp -------------------------------------------------------------------------------- /plugins/cube/skydome.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/cube/skydome.hpp -------------------------------------------------------------------------------- /plugins/decor/deco-button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/decor/deco-button.cpp -------------------------------------------------------------------------------- /plugins/decor/deco-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/decor/deco-button.hpp -------------------------------------------------------------------------------- /plugins/decor/deco-layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/decor/deco-layout.cpp -------------------------------------------------------------------------------- /plugins/decor/deco-layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/decor/deco-layout.hpp -------------------------------------------------------------------------------- /plugins/decor/deco-subsurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/decor/deco-subsurface.cpp -------------------------------------------------------------------------------- /plugins/decor/deco-subsurface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/decor/deco-subsurface.hpp -------------------------------------------------------------------------------- /plugins/decor/deco-theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/decor/deco-theme.cpp -------------------------------------------------------------------------------- /plugins/decor/deco-theme.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/decor/deco-theme.hpp -------------------------------------------------------------------------------- /plugins/decor/decoration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/decor/decoration.cpp -------------------------------------------------------------------------------- /plugins/decor/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/decor/meson.build -------------------------------------------------------------------------------- /plugins/grid/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/grid/grid.cpp -------------------------------------------------------------------------------- /plugins/grid/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/grid/meson.build -------------------------------------------------------------------------------- /plugins/grid/wayfire/plugins/crossfade.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/grid/wayfire/plugins/crossfade.hpp -------------------------------------------------------------------------------- /plugins/grid/wayfire/plugins/grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/grid/wayfire/plugins/grid.hpp -------------------------------------------------------------------------------- /plugins/ipc-rules/ipc-events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc-rules/ipc-events.hpp -------------------------------------------------------------------------------- /plugins/ipc-rules/ipc-input-methods.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc-rules/ipc-input-methods.hpp -------------------------------------------------------------------------------- /plugins/ipc-rules/ipc-rules-common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc-rules/ipc-rules-common.hpp -------------------------------------------------------------------------------- /plugins/ipc-rules/ipc-rules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc-rules/ipc-rules.cpp -------------------------------------------------------------------------------- /plugins/ipc-rules/ipc-utility-methods.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc-rules/ipc-utility-methods.hpp -------------------------------------------------------------------------------- /plugins/ipc-rules/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc-rules/meson.build -------------------------------------------------------------------------------- /plugins/ipc/ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc/ipc.cpp -------------------------------------------------------------------------------- /plugins/ipc/ipc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc/ipc.hpp -------------------------------------------------------------------------------- /plugins/ipc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc/meson.build -------------------------------------------------------------------------------- /plugins/ipc/stipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc/stipc.cpp -------------------------------------------------------------------------------- /plugins/ipc/wayfire/plugins/ipc/ipc-activator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc/wayfire/plugins/ipc/ipc-activator.hpp -------------------------------------------------------------------------------- /plugins/ipc/wayfire/plugins/ipc/ipc-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc/wayfire/plugins/ipc/ipc-helpers.hpp -------------------------------------------------------------------------------- /plugins/ipc/wayfire/plugins/ipc/ipc-method-repository.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/ipc/wayfire/plugins/ipc/ipc-method-repository.hpp -------------------------------------------------------------------------------- /plugins/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/meson.build -------------------------------------------------------------------------------- /plugins/pch/plugin_pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/pch/plugin_pch.hpp -------------------------------------------------------------------------------- /plugins/protocols/ext-toplevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/ext-toplevel.cpp -------------------------------------------------------------------------------- /plugins/protocols/foreign-toplevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/foreign-toplevel.cpp -------------------------------------------------------------------------------- /plugins/protocols/gtk-shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/gtk-shell.cpp -------------------------------------------------------------------------------- /plugins/protocols/gtk-shell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/gtk-shell.hpp -------------------------------------------------------------------------------- /plugins/protocols/input-method-v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/input-method-v1.cpp -------------------------------------------------------------------------------- /plugins/protocols/input-method-v1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/input-method-v1.hpp -------------------------------------------------------------------------------- /plugins/protocols/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/meson.build -------------------------------------------------------------------------------- /plugins/protocols/security-context-v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/security-context-v1.cpp -------------------------------------------------------------------------------- /plugins/protocols/session-lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/session-lock.cpp -------------------------------------------------------------------------------- /plugins/protocols/shortcuts-inhibit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/shortcuts-inhibit.cpp -------------------------------------------------------------------------------- /plugins/protocols/text-input-v1-v3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/text-input-v1-v3.hpp -------------------------------------------------------------------------------- /plugins/protocols/toplevel-common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/toplevel-common.hpp -------------------------------------------------------------------------------- /plugins/protocols/wayfire-shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/wayfire-shell.cpp -------------------------------------------------------------------------------- /plugins/protocols/xdg-activation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/protocols/xdg-activation.cpp -------------------------------------------------------------------------------- /plugins/scale/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/scale/meson.build -------------------------------------------------------------------------------- /plugins/scale/scale-title-filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/scale/scale-title-filter.cpp -------------------------------------------------------------------------------- /plugins/scale/scale-title-overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/scale/scale-title-overlay.cpp -------------------------------------------------------------------------------- /plugins/scale/scale-title-overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/scale/scale-title-overlay.hpp -------------------------------------------------------------------------------- /plugins/scale/scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/scale/scale.cpp -------------------------------------------------------------------------------- /plugins/scale/scale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/scale/scale.hpp -------------------------------------------------------------------------------- /plugins/scale/wayfire/plugins/scale-signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/scale/wayfire/plugins/scale-signal.hpp -------------------------------------------------------------------------------- /plugins/single_plugins/alpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/alpha.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/autostart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/autostart.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/command.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/expo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/expo.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/extra-gestures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/extra-gestures.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/fast-switcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/fast-switcher.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/fisheye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/fisheye.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/idle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/idle.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/invert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/invert.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/meson.build -------------------------------------------------------------------------------- /plugins/single_plugins/move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/move.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/oswitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/oswitch.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/place.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/place.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/preserve-output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/preserve-output.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/resize.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/switcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/switcher.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/vk-color-management.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/vk-color-management.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/vswipe-processing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/vswipe-processing.hpp -------------------------------------------------------------------------------- /plugins/single_plugins/vswipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/vswipe.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/wrot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/wrot.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/wsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/wsets.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/xkb-bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/xkb-bindings.cpp -------------------------------------------------------------------------------- /plugins/single_plugins/zoom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/single_plugins/zoom.cpp -------------------------------------------------------------------------------- /plugins/tile/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/tile/meson.build -------------------------------------------------------------------------------- /plugins/tile/tile-dragging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/tile/tile-dragging.hpp -------------------------------------------------------------------------------- /plugins/tile/tile-ipc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/tile/tile-ipc.hpp -------------------------------------------------------------------------------- /plugins/tile/tile-plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/tile/tile-plugin.cpp -------------------------------------------------------------------------------- /plugins/tile/tile-wset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/tile/tile-wset.hpp -------------------------------------------------------------------------------- /plugins/tile/tree-controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/tile/tree-controller.cpp -------------------------------------------------------------------------------- /plugins/tile/tree-controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/tile/tree-controller.hpp -------------------------------------------------------------------------------- /plugins/tile/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/tile/tree.cpp -------------------------------------------------------------------------------- /plugins/tile/tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/tile/tree.hpp -------------------------------------------------------------------------------- /plugins/vswitch/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/vswitch/meson.build -------------------------------------------------------------------------------- /plugins/vswitch/vswitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/vswitch/vswitch.cpp -------------------------------------------------------------------------------- /plugins/vswitch/wayfire/plugins/vswitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/vswitch/wayfire/plugins/vswitch.hpp -------------------------------------------------------------------------------- /plugins/window-rules/lambda-rules-registration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/window-rules/lambda-rules-registration.hpp -------------------------------------------------------------------------------- /plugins/window-rules/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/window-rules/meson.build -------------------------------------------------------------------------------- /plugins/window-rules/view-action-interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/window-rules/view-action-interface.cpp -------------------------------------------------------------------------------- /plugins/window-rules/view-action-interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/window-rules/view-action-interface.hpp -------------------------------------------------------------------------------- /plugins/window-rules/window-rules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/window-rules/window-rules.cpp -------------------------------------------------------------------------------- /plugins/wm-actions/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/wm-actions/meson.build -------------------------------------------------------------------------------- /plugins/wm-actions/wm-actions-signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/wm-actions/wm-actions-signals.hpp -------------------------------------------------------------------------------- /plugins/wm-actions/wm-actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/wm-actions/wm-actions.cpp -------------------------------------------------------------------------------- /plugins/wobbly/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/wobbly/meson.build -------------------------------------------------------------------------------- /plugins/wobbly/wayfire/plugins/wobbly/wobbly-signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/wobbly/wayfire/plugins/wobbly/wobbly-signal.hpp -------------------------------------------------------------------------------- /plugins/wobbly/wobbly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/wobbly/wobbly.c -------------------------------------------------------------------------------- /plugins/wobbly/wobbly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/wobbly/wobbly.cpp -------------------------------------------------------------------------------- /plugins/wobbly/wobbly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/plugins/wobbly/wobbly.h -------------------------------------------------------------------------------- /proto/gtk-shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/proto/gtk-shell.xml -------------------------------------------------------------------------------- /proto/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/proto/meson.build -------------------------------------------------------------------------------- /proto/wayfire-shell-unstable-v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/proto/wayfire-shell-unstable-v2.xml -------------------------------------------------------------------------------- /proto/wlr-layer-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/proto/wlr-layer-shell-unstable-v1.xml -------------------------------------------------------------------------------- /proto/wlr-output-power-management-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/proto/wlr-output-power-management-unstable-v1.xml -------------------------------------------------------------------------------- /src/api/wayfire/bindings-repository.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/bindings-repository.hpp -------------------------------------------------------------------------------- /src/api/wayfire/bindings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/bindings.hpp -------------------------------------------------------------------------------- /src/api/wayfire/compositor-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/compositor-view.hpp -------------------------------------------------------------------------------- /src/api/wayfire/config-backend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/config-backend.hpp -------------------------------------------------------------------------------- /src/api/wayfire/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/core.hpp -------------------------------------------------------------------------------- /src/api/wayfire/dassert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/dassert.hpp -------------------------------------------------------------------------------- /src/api/wayfire/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/debug.hpp -------------------------------------------------------------------------------- /src/api/wayfire/geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/geometry.hpp -------------------------------------------------------------------------------- /src/api/wayfire/idle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/idle.hpp -------------------------------------------------------------------------------- /src/api/wayfire/img.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/img.hpp -------------------------------------------------------------------------------- /src/api/wayfire/input-device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/input-device.hpp -------------------------------------------------------------------------------- /src/api/wayfire/matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/matcher.hpp -------------------------------------------------------------------------------- /src/api/wayfire/nonstd/observer_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/nonstd/observer_ptr.h -------------------------------------------------------------------------------- /src/api/wayfire/nonstd/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/nonstd/reverse.hpp -------------------------------------------------------------------------------- /src/api/wayfire/nonstd/tracking-allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/nonstd/tracking-allocator.hpp -------------------------------------------------------------------------------- /src/api/wayfire/nonstd/wlroots-full.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/nonstd/wlroots-full.hpp -------------------------------------------------------------------------------- /src/api/wayfire/nonstd/wlroots.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/nonstd/wlroots.hpp -------------------------------------------------------------------------------- /src/api/wayfire/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/object.hpp -------------------------------------------------------------------------------- /src/api/wayfire/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/opengl.hpp -------------------------------------------------------------------------------- /src/api/wayfire/option-wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/option-wrapper.hpp -------------------------------------------------------------------------------- /src/api/wayfire/output-layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/output-layout.hpp -------------------------------------------------------------------------------- /src/api/wayfire/output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/output.hpp -------------------------------------------------------------------------------- /src/api/wayfire/per-output-plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/per-output-plugin.hpp -------------------------------------------------------------------------------- /src/api/wayfire/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/plugin.hpp -------------------------------------------------------------------------------- /src/api/wayfire/region.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/region.hpp -------------------------------------------------------------------------------- /src/api/wayfire/render-manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/render-manager.hpp -------------------------------------------------------------------------------- /src/api/wayfire/render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/render.hpp -------------------------------------------------------------------------------- /src/api/wayfire/scene-input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/scene-input.hpp -------------------------------------------------------------------------------- /src/api/wayfire/scene-operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/scene-operations.hpp -------------------------------------------------------------------------------- /src/api/wayfire/scene-render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/scene-render.hpp -------------------------------------------------------------------------------- /src/api/wayfire/scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/scene.hpp -------------------------------------------------------------------------------- /src/api/wayfire/seat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/seat.hpp -------------------------------------------------------------------------------- /src/api/wayfire/signal-definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/signal-definitions.hpp -------------------------------------------------------------------------------- /src/api/wayfire/signal-provider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/signal-provider.hpp -------------------------------------------------------------------------------- /src/api/wayfire/toplevel-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/toplevel-view.hpp -------------------------------------------------------------------------------- /src/api/wayfire/toplevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/toplevel.hpp -------------------------------------------------------------------------------- /src/api/wayfire/txn/transaction-manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/txn/transaction-manager.hpp -------------------------------------------------------------------------------- /src/api/wayfire/txn/transaction-object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/txn/transaction-object.hpp -------------------------------------------------------------------------------- /src/api/wayfire/txn/transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/txn/transaction.hpp -------------------------------------------------------------------------------- /src/api/wayfire/unstable/translation-node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/unstable/translation-node.hpp -------------------------------------------------------------------------------- /src/api/wayfire/unstable/wlr-subsurface-controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/unstable/wlr-subsurface-controller.hpp -------------------------------------------------------------------------------- /src/api/wayfire/unstable/wlr-surface-controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/unstable/wlr-surface-controller.hpp -------------------------------------------------------------------------------- /src/api/wayfire/unstable/wlr-surface-node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/unstable/wlr-surface-node.hpp -------------------------------------------------------------------------------- /src/api/wayfire/unstable/wlr-text-input-v3-popup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/unstable/wlr-text-input-v3-popup.hpp -------------------------------------------------------------------------------- /src/api/wayfire/unstable/wlr-view-events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/unstable/wlr-view-events.hpp -------------------------------------------------------------------------------- /src/api/wayfire/unstable/wlr-view-keyboard-interaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/unstable/wlr-view-keyboard-interaction.hpp -------------------------------------------------------------------------------- /src/api/wayfire/unstable/xdg-toplevel-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/unstable/xdg-toplevel-base.hpp -------------------------------------------------------------------------------- /src/api/wayfire/unstable/xwl-toplevel-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/unstable/xwl-toplevel-base.hpp -------------------------------------------------------------------------------- /src/api/wayfire/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/util.hpp -------------------------------------------------------------------------------- /src/api/wayfire/view-access-interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/view-access-interface.hpp -------------------------------------------------------------------------------- /src/api/wayfire/view-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/view-helpers.hpp -------------------------------------------------------------------------------- /src/api/wayfire/view-transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/view-transform.hpp -------------------------------------------------------------------------------- /src/api/wayfire/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/view.hpp -------------------------------------------------------------------------------- /src/api/wayfire/window-manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/window-manager.hpp -------------------------------------------------------------------------------- /src/api/wayfire/workarea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/workarea.hpp -------------------------------------------------------------------------------- /src/api/wayfire/workspace-set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/workspace-set.hpp -------------------------------------------------------------------------------- /src/api/wayfire/workspace-stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/api/wayfire/workspace-stream.hpp -------------------------------------------------------------------------------- /src/core/core-impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/core-impl.hpp -------------------------------------------------------------------------------- /src/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/core.cpp -------------------------------------------------------------------------------- /src/core/gldebug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/gldebug.hpp -------------------------------------------------------------------------------- /src/core/idle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/idle.cpp -------------------------------------------------------------------------------- /src/core/img.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/img.cpp -------------------------------------------------------------------------------- /src/core/matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/matcher.cpp -------------------------------------------------------------------------------- /src/core/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/object.cpp -------------------------------------------------------------------------------- /src/core/opengl-priv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/opengl-priv.hpp -------------------------------------------------------------------------------- /src/core/opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/opengl.cpp -------------------------------------------------------------------------------- /src/core/output-layout-priv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/output-layout-priv.hpp -------------------------------------------------------------------------------- /src/core/output-layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/output-layout.cpp -------------------------------------------------------------------------------- /src/core/plugin-loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/plugin-loader.cpp -------------------------------------------------------------------------------- /src/core/plugin-loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/plugin-loader.hpp -------------------------------------------------------------------------------- /src/core/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/plugin.cpp -------------------------------------------------------------------------------- /src/core/scene-priv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/scene-priv.hpp -------------------------------------------------------------------------------- /src/core/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/scene.cpp -------------------------------------------------------------------------------- /src/core/seat/bindings-repository-impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/bindings-repository-impl.hpp -------------------------------------------------------------------------------- /src/core/seat/bindings-repository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/bindings-repository.cpp -------------------------------------------------------------------------------- /src/core/seat/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/cursor.cpp -------------------------------------------------------------------------------- /src/core/seat/cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/cursor.hpp -------------------------------------------------------------------------------- /src/core/seat/drag-icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/drag-icon.cpp -------------------------------------------------------------------------------- /src/core/seat/drag-icon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/drag-icon.hpp -------------------------------------------------------------------------------- /src/core/seat/hotspot-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/hotspot-manager.cpp -------------------------------------------------------------------------------- /src/core/seat/hotspot-manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/hotspot-manager.hpp -------------------------------------------------------------------------------- /src/core/seat/input-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/input-manager.cpp -------------------------------------------------------------------------------- /src/core/seat/input-manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/input-manager.hpp -------------------------------------------------------------------------------- /src/core/seat/input-method-popup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/input-method-popup.cpp -------------------------------------------------------------------------------- /src/core/seat/input-method-relay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/input-method-relay.cpp -------------------------------------------------------------------------------- /src/core/seat/input-method-relay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/input-method-relay.hpp -------------------------------------------------------------------------------- /src/core/seat/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/keyboard.cpp -------------------------------------------------------------------------------- /src/core/seat/keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/keyboard.hpp -------------------------------------------------------------------------------- /src/core/seat/pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/pointer.cpp -------------------------------------------------------------------------------- /src/core/seat/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/pointer.hpp -------------------------------------------------------------------------------- /src/core/seat/pointing-device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/pointing-device.cpp -------------------------------------------------------------------------------- /src/core/seat/pointing-device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/pointing-device.hpp -------------------------------------------------------------------------------- /src/core/seat/seat-impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/seat-impl.hpp -------------------------------------------------------------------------------- /src/core/seat/seat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/seat.cpp -------------------------------------------------------------------------------- /src/core/seat/switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/switch.cpp -------------------------------------------------------------------------------- /src/core/seat/switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/switch.hpp -------------------------------------------------------------------------------- /src/core/seat/tablet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/tablet.cpp -------------------------------------------------------------------------------- /src/core/seat/tablet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/tablet.hpp -------------------------------------------------------------------------------- /src/core/seat/touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/touch.cpp -------------------------------------------------------------------------------- /src/core/seat/touch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/seat/touch.hpp -------------------------------------------------------------------------------- /src/core/shaders.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/shaders.tpp -------------------------------------------------------------------------------- /src/core/txn/transaction-manager-impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/txn/transaction-manager-impl.hpp -------------------------------------------------------------------------------- /src/core/txn/transaction-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/txn/transaction-manager.cpp -------------------------------------------------------------------------------- /src/core/txn/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/txn/transaction.cpp -------------------------------------------------------------------------------- /src/core/view-access-interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/view-access-interface.cpp -------------------------------------------------------------------------------- /src/core/window-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/window-manager.cpp -------------------------------------------------------------------------------- /src/core/wm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/wm.cpp -------------------------------------------------------------------------------- /src/core/wm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/core/wm.hpp -------------------------------------------------------------------------------- /src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/debug.cpp -------------------------------------------------------------------------------- /src/default-config-backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/default-config-backend.cpp -------------------------------------------------------------------------------- /src/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/geometry.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/main.hpp -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/output/output-impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/output/output-impl.hpp -------------------------------------------------------------------------------- /src/output/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/output/output.cpp -------------------------------------------------------------------------------- /src/output/promotion-manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/output/promotion-manager.hpp -------------------------------------------------------------------------------- /src/output/render-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/output/render-manager.cpp -------------------------------------------------------------------------------- /src/output/workarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/output/workarea.cpp -------------------------------------------------------------------------------- /src/output/workspace-impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/output/workspace-impl.cpp -------------------------------------------------------------------------------- /src/output/workspace-stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/output/workspace-stream.cpp -------------------------------------------------------------------------------- /src/pch/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/pch/pch.h -------------------------------------------------------------------------------- /src/region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/region.cpp -------------------------------------------------------------------------------- /src/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/render.cpp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/version/git-branch.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/version/git-branch.cpp.in -------------------------------------------------------------------------------- /src/version/git-commit.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/version/git-commit.cpp.in -------------------------------------------------------------------------------- /src/view/compositor-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/compositor-view.cpp -------------------------------------------------------------------------------- /src/view/layer-shell/layer-shell-node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/layer-shell/layer-shell-node.cpp -------------------------------------------------------------------------------- /src/view/layer-shell/layer-shell-node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/layer-shell/layer-shell-node.hpp -------------------------------------------------------------------------------- /src/view/layer-shell/layer-shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/layer-shell/layer-shell.cpp -------------------------------------------------------------------------------- /src/view/toplevel-node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/toplevel-node.cpp -------------------------------------------------------------------------------- /src/view/toplevel-node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/toplevel-node.hpp -------------------------------------------------------------------------------- /src/view/toplevel-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/toplevel-view.cpp -------------------------------------------------------------------------------- /src/view/translation-node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/translation-node.cpp -------------------------------------------------------------------------------- /src/view/view-3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/view-3d.cpp -------------------------------------------------------------------------------- /src/view/view-impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/view-impl.cpp -------------------------------------------------------------------------------- /src/view/view-impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/view-impl.hpp -------------------------------------------------------------------------------- /src/view/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/view.cpp -------------------------------------------------------------------------------- /src/view/wlr-subsurface-controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/wlr-subsurface-controller.cpp -------------------------------------------------------------------------------- /src/view/wlr-surface-controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/wlr-surface-controller.cpp -------------------------------------------------------------------------------- /src/view/wlr-surface-node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/wlr-surface-node.cpp -------------------------------------------------------------------------------- /src/view/wlr-surface-pointer-interaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/wlr-surface-pointer-interaction.hpp -------------------------------------------------------------------------------- /src/view/wlr-surface-touch-interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/wlr-surface-touch-interaction.cpp -------------------------------------------------------------------------------- /src/view/xdg-shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xdg-shell.cpp -------------------------------------------------------------------------------- /src/view/xdg-shell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xdg-shell.hpp -------------------------------------------------------------------------------- /src/view/xdg-shell/xdg-toplevel-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xdg-shell/xdg-toplevel-view.cpp -------------------------------------------------------------------------------- /src/view/xdg-shell/xdg-toplevel-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xdg-shell/xdg-toplevel-view.hpp -------------------------------------------------------------------------------- /src/view/xdg-shell/xdg-toplevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xdg-shell/xdg-toplevel.cpp -------------------------------------------------------------------------------- /src/view/xdg-shell/xdg-toplevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xdg-shell/xdg-toplevel.hpp -------------------------------------------------------------------------------- /src/view/xwayland.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xwayland.cpp -------------------------------------------------------------------------------- /src/view/xwayland/xwayland-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xwayland/xwayland-helpers.cpp -------------------------------------------------------------------------------- /src/view/xwayland/xwayland-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xwayland/xwayland-helpers.hpp -------------------------------------------------------------------------------- /src/view/xwayland/xwayland-toplevel-view.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/xwayland/xwayland-toplevel-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xwayland/xwayland-toplevel-view.hpp -------------------------------------------------------------------------------- /src/view/xwayland/xwayland-toplevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xwayland/xwayland-toplevel.cpp -------------------------------------------------------------------------------- /src/view/xwayland/xwayland-toplevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xwayland/xwayland-toplevel.hpp -------------------------------------------------------------------------------- /src/view/xwayland/xwayland-unmanaged-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xwayland/xwayland-unmanaged-view.hpp -------------------------------------------------------------------------------- /src/view/xwayland/xwayland-view-base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xwayland/xwayland-view-base.cpp -------------------------------------------------------------------------------- /src/view/xwayland/xwayland-view-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/view/xwayland/xwayland-view-base.hpp -------------------------------------------------------------------------------- /src/wl-listener-wrapper.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/src/wl-listener-wrapper.tpp -------------------------------------------------------------------------------- /subprojects/yyjson.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/subprojects/yyjson.wrap -------------------------------------------------------------------------------- /test/geometry/geometry_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/test/geometry/geometry_test.cpp -------------------------------------------------------------------------------- /test/geometry/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/test/geometry/meson.build -------------------------------------------------------------------------------- /test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/test/meson.build -------------------------------------------------------------------------------- /test/misc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/test/misc/meson.build -------------------------------------------------------------------------------- /test/misc/safe-list-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/test/misc/safe-list-test.cpp -------------------------------------------------------------------------------- /test/misc/tracking-allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/test/misc/tracking-allocator.cpp -------------------------------------------------------------------------------- /test/txn/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/test/txn/meson.build -------------------------------------------------------------------------------- /test/txn/transaction-manager-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/test/txn/transaction-manager-test.cpp -------------------------------------------------------------------------------- /test/txn/transaction-test-object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/test/txn/transaction-test-object.hpp -------------------------------------------------------------------------------- /test/txn/transaction-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/test/txn/transaction-test.cpp -------------------------------------------------------------------------------- /uncrustify.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/uncrustify.ini -------------------------------------------------------------------------------- /util/make_pots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/util/make_pots.py -------------------------------------------------------------------------------- /util/strip_po_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/util/strip_po_comments.py -------------------------------------------------------------------------------- /util/wayfire-itstool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/util/wayfire-itstool.xml -------------------------------------------------------------------------------- /wayfire-portals.conf: -------------------------------------------------------------------------------- 1 | [preferred] 2 | default=wlr;* 3 | org.freedesktop.impl.portal.Inhibit=none 4 | -------------------------------------------------------------------------------- /wayfire.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/wayfire.desktop -------------------------------------------------------------------------------- /wayfire.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilydjwg/wayfire/HEAD/wayfire.ini --------------------------------------------------------------------------------