├── .containerignore ├── .github └── FUNDING.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── ChangeLog.md ├── Contributing.md ├── LICENSE.txt ├── Makefile ├── Readme.md ├── distribute.sh ├── escapecodes └── AsiEscapeCodes.go ├── framebuffertoansi ├── ChafaInfo.go ├── DetectTerminal.go ├── DrawState.go ├── Readme.md └── TermSize.go ├── go.mod ├── main.go ├── resources ├── HowIDidIt.md ├── alpineCompile.sh ├── graphics │ ├── desktop_in_vm.gif │ ├── doom.gif │ ├── file_manager.gif │ ├── full_resultion.gif │ ├── on_ipad.gif │ ├── on_ipad_screen_recording.gif │ ├── show_increase_res.gif │ ├── ssh_example.gif │ ├── terminal_in_terminal.gif │ ├── this_is_gwern.gif │ └── warp_in_2.gif └── multiplatform.sh ├── termeverything ├── ConvertKeycodeToXbdCode.go ├── Desktop.go ├── DisplayServerType.go ├── KeycodeSingleCodes.go ├── LinuxEventCodes.go ├── MainLoop.go ├── ParseArgs.go ├── PointerCode.go ├── RawMode.go ├── Readme.md ├── RenderMarkdownToTerminal.go ├── SetVirtualMonitorSize.go ├── StatusLine.go ├── TerminalDrawLoop.go ├── TerminalWindow.go ├── profile.go └── resources │ ├── LICENSES.txt │ ├── help.md │ └── icon.png └── wayland ├── ApplyWlSurfaceDoubleBufferedState.go ├── Client.go ├── ClientGlobal.go ├── CopyBufferToWlSurfaceTexture.go ├── GetMessageAnd_fileDescriptors.go ├── Globals.go ├── ListenToWaylandSocket.go ├── MemMap.go ├── MessageDecoder.go ├── Readme.md ├── SendMessageAndFileDescriptors.go ├── SocketListener.go ├── SurfaceRole.go ├── SurfaceUpdate.go ├── VirtualMonitorSize.go ├── generate.go ├── generate ├── Protocol.go ├── build_protocol.go ├── gen_enums.go ├── gen_events.go ├── gen_interface_interface.go ├── gen_request_handler.go ├── protocols.go └── resources │ ├── wayland.xml │ ├── xdg-decoration-unstable-v1.xml │ ├── xdg-shell.xml │ ├── xwayland-keyboard-grab-unstable-v1.xml │ └── xwayland-shell-v1.xml ├── mmap.c ├── mmap.h ├── pointerslices ├── Readme.md └── lib.go ├── protocols ├── GlobalObjects.go ├── structs.go ├── wayland_debug.go └── wayland_nodebug.go ├── resources └── server-1.xkb ├── types.go ├── wl_compositor.go ├── wl_data_device.go ├── wl_data_device_manager.go ├── wl_data_source.go ├── wl_display.go ├── wl_keyboard.go ├── wl_output.go ├── wl_pointer.go ├── wl_region.go ├── wl_registry.go ├── wl_seat.go ├── wl_shm.go ├── wl_shm_pool.go ├── wl_subcompositor.go ├── wl_subsurface.go ├── wl_surface.go ├── wl_tough.go ├── xdg_popup.go ├── xdg_positioner.go ├── xdg_surface.go ├── xdg_toplevel.go ├── xdg_wm_base.go ├── xwayland_shell_v1.go ├── xwayland_surface_v1.go ├── zwp_xwayland_keyboard_grab_manager_v1.go ├── zwp_xwayland_keyboard_grab_v1.go ├── zxdg_decoration_manager_v1.go └── zxdg_toplevel_decoration_v1.go /.containerignore: -------------------------------------------------------------------------------- 1 | ./.gitignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [mmulet] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/Readme.md -------------------------------------------------------------------------------- /distribute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/distribute.sh -------------------------------------------------------------------------------- /escapecodes/AsiEscapeCodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/escapecodes/AsiEscapeCodes.go -------------------------------------------------------------------------------- /framebuffertoansi/ChafaInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/framebuffertoansi/ChafaInfo.go -------------------------------------------------------------------------------- /framebuffertoansi/DetectTerminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/framebuffertoansi/DetectTerminal.go -------------------------------------------------------------------------------- /framebuffertoansi/DrawState.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/framebuffertoansi/DrawState.go -------------------------------------------------------------------------------- /framebuffertoansi/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/framebuffertoansi/Readme.md -------------------------------------------------------------------------------- /framebuffertoansi/TermSize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/framebuffertoansi/TermSize.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mmulet/term.everything 2 | 3 | go 1.25.2 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/main.go -------------------------------------------------------------------------------- /resources/HowIDidIt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/HowIDidIt.md -------------------------------------------------------------------------------- /resources/alpineCompile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/alpineCompile.sh -------------------------------------------------------------------------------- /resources/graphics/desktop_in_vm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/graphics/desktop_in_vm.gif -------------------------------------------------------------------------------- /resources/graphics/doom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/graphics/doom.gif -------------------------------------------------------------------------------- /resources/graphics/file_manager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/graphics/file_manager.gif -------------------------------------------------------------------------------- /resources/graphics/full_resultion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/graphics/full_resultion.gif -------------------------------------------------------------------------------- /resources/graphics/on_ipad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/graphics/on_ipad.gif -------------------------------------------------------------------------------- /resources/graphics/on_ipad_screen_recording.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/graphics/on_ipad_screen_recording.gif -------------------------------------------------------------------------------- /resources/graphics/show_increase_res.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/graphics/show_increase_res.gif -------------------------------------------------------------------------------- /resources/graphics/ssh_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/graphics/ssh_example.gif -------------------------------------------------------------------------------- /resources/graphics/terminal_in_terminal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/graphics/terminal_in_terminal.gif -------------------------------------------------------------------------------- /resources/graphics/this_is_gwern.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/graphics/this_is_gwern.gif -------------------------------------------------------------------------------- /resources/graphics/warp_in_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/graphics/warp_in_2.gif -------------------------------------------------------------------------------- /resources/multiplatform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/resources/multiplatform.sh -------------------------------------------------------------------------------- /termeverything/ConvertKeycodeToXbdCode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/ConvertKeycodeToXbdCode.go -------------------------------------------------------------------------------- /termeverything/Desktop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/Desktop.go -------------------------------------------------------------------------------- /termeverything/DisplayServerType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/DisplayServerType.go -------------------------------------------------------------------------------- /termeverything/KeycodeSingleCodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/KeycodeSingleCodes.go -------------------------------------------------------------------------------- /termeverything/LinuxEventCodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/LinuxEventCodes.go -------------------------------------------------------------------------------- /termeverything/MainLoop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/MainLoop.go -------------------------------------------------------------------------------- /termeverything/ParseArgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/ParseArgs.go -------------------------------------------------------------------------------- /termeverything/PointerCode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/PointerCode.go -------------------------------------------------------------------------------- /termeverything/RawMode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/RawMode.go -------------------------------------------------------------------------------- /termeverything/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/Readme.md -------------------------------------------------------------------------------- /termeverything/RenderMarkdownToTerminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/RenderMarkdownToTerminal.go -------------------------------------------------------------------------------- /termeverything/SetVirtualMonitorSize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/SetVirtualMonitorSize.go -------------------------------------------------------------------------------- /termeverything/StatusLine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/StatusLine.go -------------------------------------------------------------------------------- /termeverything/TerminalDrawLoop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/TerminalDrawLoop.go -------------------------------------------------------------------------------- /termeverything/TerminalWindow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/TerminalWindow.go -------------------------------------------------------------------------------- /termeverything/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/profile.go -------------------------------------------------------------------------------- /termeverything/resources/LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/resources/LICENSES.txt -------------------------------------------------------------------------------- /termeverything/resources/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/resources/help.md -------------------------------------------------------------------------------- /termeverything/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/termeverything/resources/icon.png -------------------------------------------------------------------------------- /wayland/ApplyWlSurfaceDoubleBufferedState.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/ApplyWlSurfaceDoubleBufferedState.go -------------------------------------------------------------------------------- /wayland/Client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/Client.go -------------------------------------------------------------------------------- /wayland/ClientGlobal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/ClientGlobal.go -------------------------------------------------------------------------------- /wayland/CopyBufferToWlSurfaceTexture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/CopyBufferToWlSurfaceTexture.go -------------------------------------------------------------------------------- /wayland/GetMessageAnd_fileDescriptors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/GetMessageAnd_fileDescriptors.go -------------------------------------------------------------------------------- /wayland/Globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/Globals.go -------------------------------------------------------------------------------- /wayland/ListenToWaylandSocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/ListenToWaylandSocket.go -------------------------------------------------------------------------------- /wayland/MemMap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/MemMap.go -------------------------------------------------------------------------------- /wayland/MessageDecoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/MessageDecoder.go -------------------------------------------------------------------------------- /wayland/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/Readme.md -------------------------------------------------------------------------------- /wayland/SendMessageAndFileDescriptors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/SendMessageAndFileDescriptors.go -------------------------------------------------------------------------------- /wayland/SocketListener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/SocketListener.go -------------------------------------------------------------------------------- /wayland/SurfaceRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/SurfaceRole.go -------------------------------------------------------------------------------- /wayland/SurfaceUpdate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/SurfaceUpdate.go -------------------------------------------------------------------------------- /wayland/VirtualMonitorSize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/VirtualMonitorSize.go -------------------------------------------------------------------------------- /wayland/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate.go -------------------------------------------------------------------------------- /wayland/generate/Protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate/Protocol.go -------------------------------------------------------------------------------- /wayland/generate/build_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate/build_protocol.go -------------------------------------------------------------------------------- /wayland/generate/gen_enums.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate/gen_enums.go -------------------------------------------------------------------------------- /wayland/generate/gen_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate/gen_events.go -------------------------------------------------------------------------------- /wayland/generate/gen_interface_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate/gen_interface_interface.go -------------------------------------------------------------------------------- /wayland/generate/gen_request_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate/gen_request_handler.go -------------------------------------------------------------------------------- /wayland/generate/protocols.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate/protocols.go -------------------------------------------------------------------------------- /wayland/generate/resources/wayland.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate/resources/wayland.xml -------------------------------------------------------------------------------- /wayland/generate/resources/xdg-decoration-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate/resources/xdg-decoration-unstable-v1.xml -------------------------------------------------------------------------------- /wayland/generate/resources/xdg-shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate/resources/xdg-shell.xml -------------------------------------------------------------------------------- /wayland/generate/resources/xwayland-keyboard-grab-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate/resources/xwayland-keyboard-grab-unstable-v1.xml -------------------------------------------------------------------------------- /wayland/generate/resources/xwayland-shell-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/generate/resources/xwayland-shell-v1.xml -------------------------------------------------------------------------------- /wayland/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/mmap.c -------------------------------------------------------------------------------- /wayland/mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/mmap.h -------------------------------------------------------------------------------- /wayland/pointerslices/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/pointerslices/Readme.md -------------------------------------------------------------------------------- /wayland/pointerslices/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/pointerslices/lib.go -------------------------------------------------------------------------------- /wayland/protocols/GlobalObjects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/protocols/GlobalObjects.go -------------------------------------------------------------------------------- /wayland/protocols/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/protocols/structs.go -------------------------------------------------------------------------------- /wayland/protocols/wayland_debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/protocols/wayland_debug.go -------------------------------------------------------------------------------- /wayland/protocols/wayland_nodebug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/protocols/wayland_nodebug.go -------------------------------------------------------------------------------- /wayland/resources/server-1.xkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/resources/server-1.xkb -------------------------------------------------------------------------------- /wayland/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/types.go -------------------------------------------------------------------------------- /wayland/wl_compositor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_compositor.go -------------------------------------------------------------------------------- /wayland/wl_data_device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_data_device.go -------------------------------------------------------------------------------- /wayland/wl_data_device_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_data_device_manager.go -------------------------------------------------------------------------------- /wayland/wl_data_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_data_source.go -------------------------------------------------------------------------------- /wayland/wl_display.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_display.go -------------------------------------------------------------------------------- /wayland/wl_keyboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_keyboard.go -------------------------------------------------------------------------------- /wayland/wl_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_output.go -------------------------------------------------------------------------------- /wayland/wl_pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_pointer.go -------------------------------------------------------------------------------- /wayland/wl_region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_region.go -------------------------------------------------------------------------------- /wayland/wl_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_registry.go -------------------------------------------------------------------------------- /wayland/wl_seat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_seat.go -------------------------------------------------------------------------------- /wayland/wl_shm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_shm.go -------------------------------------------------------------------------------- /wayland/wl_shm_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_shm_pool.go -------------------------------------------------------------------------------- /wayland/wl_subcompositor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_subcompositor.go -------------------------------------------------------------------------------- /wayland/wl_subsurface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_subsurface.go -------------------------------------------------------------------------------- /wayland/wl_surface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_surface.go -------------------------------------------------------------------------------- /wayland/wl_tough.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/wl_tough.go -------------------------------------------------------------------------------- /wayland/xdg_popup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/xdg_popup.go -------------------------------------------------------------------------------- /wayland/xdg_positioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/xdg_positioner.go -------------------------------------------------------------------------------- /wayland/xdg_surface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/xdg_surface.go -------------------------------------------------------------------------------- /wayland/xdg_toplevel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/xdg_toplevel.go -------------------------------------------------------------------------------- /wayland/xdg_wm_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/xdg_wm_base.go -------------------------------------------------------------------------------- /wayland/xwayland_shell_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/xwayland_shell_v1.go -------------------------------------------------------------------------------- /wayland/xwayland_surface_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/xwayland_surface_v1.go -------------------------------------------------------------------------------- /wayland/zwp_xwayland_keyboard_grab_manager_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/zwp_xwayland_keyboard_grab_manager_v1.go -------------------------------------------------------------------------------- /wayland/zwp_xwayland_keyboard_grab_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/zwp_xwayland_keyboard_grab_v1.go -------------------------------------------------------------------------------- /wayland/zxdg_decoration_manager_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/zxdg_decoration_manager_v1.go -------------------------------------------------------------------------------- /wayland/zxdg_toplevel_decoration_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmulet/term.everything/HEAD/wayland/zxdg_toplevel_decoration_v1.go --------------------------------------------------------------------------------