├── .buildconfig ├── .gitignore ├── AUTHORS ├── COPYING ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── common ├── xfwm-common.c └── xfwm-common.h ├── configure.ac.in ├── meson.build ├── po ├── Makefile.in.in ├── POTFILES ├── en_GB.po └── stamp-it ├── protocol ├── Makefile.am ├── meson.build ├── scan.sh ├── window-switcher-unstable-v1.xml ├── wlr-foreign-toplevel-management-unstable-v1.xml ├── wlr-layer-shell-unstable-v1.xml ├── xdg-shell-unstable-v6.xml └── xfway-shell.xml ├── src ├── Makefile.am ├── client.c ├── client.h ├── display.h ├── main-shell-client.c ├── main-wayland.c ├── os-compatibility.c ├── os-compatibility.h ├── screen.c ├── screen.h ├── server.h ├── settings.h ├── shell.c ├── shell.h ├── stacking.c ├── stacking.h ├── tabwin.c ├── tabwin.h ├── window-switcher.c ├── wlr_foreign_toplevel_management_v1.c ├── wlr_foreign_toplevel_management_v1.h ├── wlr_layer_shell_v1.c ├── wlr_layer_shell_v1.h └── xfway.h ├── tests └── test-switcher │ ├── Makefile.am │ └── switcher-test.c ├── util ├── helpers.h ├── libgwater-wayland.c ├── libgwater-wayland.h ├── signal.c └── signal.h ├── xfway-protocols-uninstalled.pc.in └── xfway-protocols.pc.in /.buildconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/.buildconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/autogen.sh -------------------------------------------------------------------------------- /common/xfwm-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/common/xfwm-common.c -------------------------------------------------------------------------------- /common/xfwm-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/common/xfwm-common.h -------------------------------------------------------------------------------- /configure.ac.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/configure.ac.in -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/meson.build -------------------------------------------------------------------------------- /po/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/po/Makefile.in.in -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/stamp-it: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protocol/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/protocol/Makefile.am -------------------------------------------------------------------------------- /protocol/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/protocol/meson.build -------------------------------------------------------------------------------- /protocol/scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/protocol/scan.sh -------------------------------------------------------------------------------- /protocol/window-switcher-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/protocol/window-switcher-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/wlr-foreign-toplevel-management-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/protocol/wlr-foreign-toplevel-management-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/wlr-layer-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/protocol/wlr-layer-shell-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/xdg-shell-unstable-v6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/protocol/xdg-shell-unstable-v6.xml -------------------------------------------------------------------------------- /protocol/xfway-shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/protocol/xfway-shell.xml -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/client.c -------------------------------------------------------------------------------- /src/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/client.h -------------------------------------------------------------------------------- /src/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/display.h -------------------------------------------------------------------------------- /src/main-shell-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/main-shell-client.c -------------------------------------------------------------------------------- /src/main-wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/main-wayland.c -------------------------------------------------------------------------------- /src/os-compatibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/os-compatibility.c -------------------------------------------------------------------------------- /src/os-compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/os-compatibility.h -------------------------------------------------------------------------------- /src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/screen.c -------------------------------------------------------------------------------- /src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/screen.h -------------------------------------------------------------------------------- /src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/server.h -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/shell.c -------------------------------------------------------------------------------- /src/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/shell.h -------------------------------------------------------------------------------- /src/stacking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/stacking.c -------------------------------------------------------------------------------- /src/stacking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/stacking.h -------------------------------------------------------------------------------- /src/tabwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/tabwin.c -------------------------------------------------------------------------------- /src/tabwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/tabwin.h -------------------------------------------------------------------------------- /src/window-switcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/window-switcher.c -------------------------------------------------------------------------------- /src/wlr_foreign_toplevel_management_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/wlr_foreign_toplevel_management_v1.c -------------------------------------------------------------------------------- /src/wlr_foreign_toplevel_management_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/wlr_foreign_toplevel_management_v1.h -------------------------------------------------------------------------------- /src/wlr_layer_shell_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/wlr_layer_shell_v1.c -------------------------------------------------------------------------------- /src/wlr_layer_shell_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/wlr_layer_shell_v1.h -------------------------------------------------------------------------------- /src/xfway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/src/xfway.h -------------------------------------------------------------------------------- /tests/test-switcher/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/tests/test-switcher/Makefile.am -------------------------------------------------------------------------------- /tests/test-switcher/switcher-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/tests/test-switcher/switcher-test.c -------------------------------------------------------------------------------- /util/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/util/helpers.h -------------------------------------------------------------------------------- /util/libgwater-wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/util/libgwater-wayland.c -------------------------------------------------------------------------------- /util/libgwater-wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/util/libgwater-wayland.h -------------------------------------------------------------------------------- /util/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/util/signal.c -------------------------------------------------------------------------------- /util/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/util/signal.h -------------------------------------------------------------------------------- /xfway-protocols-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/xfway-protocols-uninstalled.pc.in -------------------------------------------------------------------------------- /xfway-protocols.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfway/HEAD/xfway-protocols.pc.in --------------------------------------------------------------------------------