├── .gitignore ├── .vscode ├── extensions.json ├── flutter.code-snippets ├── launch.json ├── settings.json └── tasks.json ├── GUIDELINES.md ├── LICENSE ├── LICENSE copy ├── README.md ├── analysis_options.yaml ├── bin ├── commands │ ├── build.dart │ ├── clean.dart │ ├── dependency │ │ ├── check_depencies.dart │ │ └── package_manager │ │ │ ├── apt.dart │ │ │ ├── dnf.dart │ │ │ ├── package_manager_base.dart │ │ │ └── pacman.dart │ ├── dev.dart │ ├── install.dart │ └── run.dart ├── util.dart └── veshell.dart ├── dependencies.md ├── embedder ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── resources │ └── cursor.rgba ├── src │ ├── backend │ │ ├── drm_backend.rs │ │ ├── mod.rs │ │ └── x11_client.rs │ ├── cursor.rs │ ├── flutter_engine │ │ ├── callbacks.rs │ │ ├── embedder.rs │ │ ├── mod.rs │ │ ├── platform_channel_callbacks.rs │ │ ├── platform_channels.rs │ │ ├── platform_channels │ │ │ ├── README.md │ │ │ ├── basic_message_channel.rs │ │ │ ├── binary_messenger.rs │ │ │ ├── binary_messenger_impl.rs │ │ │ ├── byte_buffer_streams.rs │ │ │ ├── byte_streams.rs │ │ │ ├── encodable_value.rs │ │ │ ├── engine_method_result.rs │ │ │ ├── json_message_codec.rs │ │ │ ├── json_method_codec.rs │ │ │ ├── message_codec.rs │ │ │ ├── method_call.rs │ │ │ ├── method_channel.rs │ │ │ ├── method_codec.rs │ │ │ ├── method_result.rs │ │ │ ├── method_result_functions.rs │ │ │ ├── method_result_mpsc_channel.rs │ │ │ ├── standard_codec_serializer.rs │ │ │ ├── standard_message_codec.rs │ │ │ ├── standard_method_codec.rs │ │ │ ├── text_input_model.rs │ │ │ └── text_range.rs │ │ ├── task_runner.rs │ │ ├── text_input.rs │ │ └── wayland_messages.rs │ ├── focus.rs │ ├── gles_framebuffer_importer.rs │ ├── input_handling.rs │ ├── keyboard.rs │ ├── keyboard │ │ ├── glfw_key_codes.rs │ │ └── key_repeater.rs │ ├── main.rs │ ├── mouse_button_tracker.rs │ ├── state.rs │ ├── texture_swap_chain.rs │ ├── wayland │ │ ├── mod.rs │ │ └── xdg.rs │ └── xwayland.rs └── third_party │ ├── flutter_engine │ └── embedder.h │ └── smithay-drm-extras │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ └── src │ ├── docs │ └── doctest_helpers.rs │ ├── drm_scanner.rs │ ├── drm_scanner │ ├── connector_scanner.rs │ └── crtc_mapper.rs │ ├── edid.rs │ ├── hwdata │ ├── generated │ │ └── pnp_ids.rs │ └── mod.rs │ └── lib.rs ├── pubspec.lock ├── pubspec.yaml └── shell ├── .config ├── custom_devices.json ├── settings └── tool_state ├── .gitignore ├── analysis_options.yaml ├── assets └── ship_vector.svg ├── build.yaml ├── lib ├── application │ ├── model │ │ └── launch_config.serializable.dart │ ├── provider │ │ ├── app_drawer.dart │ │ ├── app_drawer_desktop_entries.dart │ │ ├── app_launch.dart │ │ ├── desktop_entries.dart │ │ ├── file_to_scalable_image.dart │ │ ├── icon_themes.dart │ │ ├── image_from_icon_query.dart │ │ └── localized_desktop_entries.dart │ └── widget │ │ └── app_icon.dart ├── display │ ├── model │ │ └── display.dart │ ├── provider │ │ └── display.dart │ └── widget │ │ └── display.dart ├── enums.dart ├── main.dart ├── monitor │ ├── model │ │ ├── monitor.serializable.dart │ │ ├── monitor_configuration.serializable.dart │ │ └── screen_configuration.serializable.dart │ ├── provider │ │ ├── current_monitor.dart │ │ ├── monitor_configuration_state.dart │ │ └── monitor_list.dart │ └── widget │ │ └── monitor.dart ├── overview │ ├── helm │ │ ├── control_panel │ │ │ ├── bluetooth │ │ │ │ ├── model │ │ │ │ │ ├── bluetooth_device.dart │ │ │ │ │ └── bluetooth_manager_state.dart │ │ │ │ ├── provider │ │ │ │ │ ├── bluetooth_device.dart │ │ │ │ │ └── bluetooth_manager.dart │ │ │ │ └── widget │ │ │ │ │ ├── bluetooth_control.dart │ │ │ │ │ ├── bluetooth_device_icon.dart │ │ │ │ │ └── bluetooth_device_list_tile.dart │ │ │ └── widget │ │ │ │ ├── audio_output.dart │ │ │ │ ├── control_panel.dart │ │ │ │ └── session_controls.dart │ │ ├── monitoring_panel │ │ │ ├── cpu_monitoring │ │ │ │ ├── model │ │ │ │ │ ├── cpu.dart │ │ │ │ │ ├── cpu_line.dart │ │ │ │ │ └── processes_cpu_stats_snapshot.dart │ │ │ │ ├── provider │ │ │ │ │ ├── cpu_stats.dart │ │ │ │ │ ├── process_name.dart │ │ │ │ │ └── processes_cpu_stats.dart │ │ │ │ └── widget │ │ │ │ │ └── cpu_monitoring.dart │ │ │ ├── model │ │ │ │ └── process_stat.dart │ │ │ ├── provider │ │ │ │ └── process_list.dart │ │ │ └── widget │ │ │ │ └── monitoring_panel.dart │ │ ├── notification_panel │ │ │ └── widget │ │ │ │ └── notification_panel.dart │ │ ├── provider │ │ │ └── audio_output.dart │ │ └── widget │ │ │ └── helm.dart │ ├── model │ │ └── overview.dart │ ├── provider │ │ └── overview_state.dart │ ├── search │ │ └── widget │ │ │ ├── application_search_result.dart │ │ │ ├── file_search_result.dart │ │ │ ├── search_engine.dart │ │ │ ├── search_input.dart │ │ │ └── settings_search_result.dart │ └── widget │ │ ├── overview.dart │ │ └── overview_content.dart ├── pointer │ ├── model │ │ └── pointer_focus.serializable.dart │ └── provider │ │ └── pointer_focus.manager.dart ├── polkit │ ├── model │ │ ├── authentication_agent.dart │ │ ├── org.freedesktop.PolicyKit1.AuthenticationAgent.dart │ │ ├── org.freedesktop.PolicyKit1.AuthenticationAgent.xml │ │ └── polkit-agent-helper.dart │ ├── provider │ │ └── authentication_agent.dart │ └── widget │ │ └── polkit_authentication_dialog.dart ├── screen │ ├── model │ │ ├── screen.serializable.dart │ │ ├── screen_shortcuts.dart │ │ └── workspace_drag_data.dart │ ├── provider │ │ ├── current_screen_id.dart │ │ ├── focused_screen.dart │ │ ├── screen_list.dart │ │ ├── screen_state.dart │ │ └── workspace_display_mode.dart │ └── widget │ │ ├── screen.dart │ │ ├── screen_panel.dart │ │ └── workspace_list.dart ├── shared │ ├── bluez │ │ └── provider │ │ │ ├── bluez_client.dart │ │ │ ├── bluez_device.dart │ │ │ ├── bluez_device_added.dart │ │ │ ├── bluez_device_removed.dart │ │ │ └── bluez_devices.dart │ ├── nm │ │ └── provider │ │ │ ├── nm_client.dart │ │ │ ├── nm_device.dart │ │ │ ├── nm_device_added.dart │ │ │ ├── nm_device_removed.dart │ │ │ └── nm_devices.dart │ ├── persistence │ │ ├── persistable_model.mixin.dart │ │ ├── persistable_provider.mixin.dart │ │ └── persistence_manager.dart │ ├── provider │ │ ├── cursor_position.dart │ │ ├── dbus_client.dart │ │ ├── mouse_button_tracker.dart │ │ ├── now_date_time.dart │ │ ├── persistent_json_by_folder.dart │ │ └── root_overlay.dart │ ├── state │ │ └── task_switcher │ │ │ ├── model │ │ │ └── task_switcher.dart │ │ │ └── provider │ │ │ └── task_switcher.dart │ ├── tasks │ │ ├── model │ │ │ └── tasks.dart │ │ └── provider │ │ │ └── tasks.dart │ ├── util │ │ ├── json_converter │ │ │ ├── offset.dart │ │ │ ├── rect.dart │ │ │ └── size.dart │ │ ├── logger.dart │ │ ├── raw_gesture_recognizer.dart │ │ └── rect_overflow_box.dart │ └── widget │ │ ├── clock.dart │ │ ├── cross_reorderable_list.dart │ │ ├── number_picker.dart │ │ └── sliding_container.dart ├── systemd │ └── provider │ │ └── session.dart ├── theme │ └── theme.dart ├── wayland │ ├── model │ │ ├── event │ │ │ ├── app_id_changed │ │ │ │ └── app_id_changed.serializable.dart │ │ │ ├── commit_surface │ │ │ │ └── commit_surface.serializable.dart │ │ │ ├── destroy_popup │ │ │ │ └── destroy_popup.serializable.dart │ │ │ ├── destroy_subsurface │ │ │ │ └── destroy_subsurface.serializable.dart │ │ │ ├── destroy_surface │ │ │ │ └── destroy_surface.serializable.dart │ │ │ ├── destroy_toplevel │ │ │ │ └── destroy_toplevel.serializable.dart │ │ │ ├── destroy_x11_surface │ │ │ │ └── destroy_x11_surface.serializable.dart │ │ │ ├── destroy_xdg_surface │ │ │ │ └── destroy_xdg_surface.serializable.dart │ │ │ ├── interactive_move │ │ │ │ └── interactive_move.serializable.dart │ │ │ ├── interactive_resize │ │ │ │ └── interactive_resize.serializable.dart │ │ │ ├── map_x11_surface │ │ │ │ └── map_x11_surface.serializable.dart │ │ │ ├── monitor_layout_changed │ │ │ │ └── monitor_layout_changed.serializable.dart │ │ │ ├── new_popup │ │ │ │ └── new_popup.serializable.dart │ │ │ ├── new_subsurface │ │ │ │ └── new_subsurface.serializable.dart │ │ │ ├── new_surface │ │ │ │ └── new_surface.serializable.dart │ │ │ ├── new_toplevel │ │ │ │ └── new_toplevel.serializable.dart │ │ │ ├── new_x11_surface │ │ │ │ └── new_x11_surface.serializable.dart │ │ │ ├── set_environment_variables │ │ │ │ └── set_environment_variables.serializable.dart │ │ │ ├── surface_associated │ │ │ │ └── surface_associated.serializable.dart │ │ │ ├── title_changed │ │ │ │ └── title_changed.serializable.dart │ │ │ ├── unmap_x11_surface │ │ │ │ └── unmap_x11_surface.serializable.dart │ │ │ ├── wayland_event.serializable.dart │ │ │ └── x11_properties_changed │ │ │ │ └── x11_properties_changed.serializable.dart │ │ ├── request │ │ │ ├── activate_window │ │ │ │ └── activate_window.serializable.dart │ │ │ ├── close_window │ │ │ │ └── close_window.serializable.dart │ │ │ ├── get_environment_variables │ │ │ │ └── get_environment_variables.serializable.dart │ │ │ ├── get_monitor_layout │ │ │ │ └── get_monitor_layout.serializable.dart │ │ │ ├── maximize_window │ │ │ │ └── maximize_window.serializable.dart │ │ │ ├── mouse_buttons_event │ │ │ │ └── mouse_buttons_event.serializable.dart │ │ │ ├── pointer_focus │ │ │ │ └── pointer_focus.serializable.dart │ │ │ ├── resize_window │ │ │ │ └── resize_window.serializable.dart │ │ │ ├── shell_ready │ │ │ │ └── shell_ready.serializable.dart │ │ │ ├── touch │ │ │ │ └── touch.serializable.dart │ │ │ ├── unregister_view_texture │ │ │ │ └── unregister_view_texture.serializable.dart │ │ │ └── wayland_request.dart │ │ ├── subsurface.dart │ │ ├── surface_manager_state.dart │ │ ├── wl_surface.dart │ │ ├── x11_surface.dart │ │ ├── xdg_popup.dart │ │ ├── xdg_surface.dart │ │ └── xdg_toplevel.dart │ ├── provider │ │ ├── environment_variables.dart │ │ ├── subsurface_state.dart │ │ ├── surface.manager.dart │ │ ├── wayland.manager.dart │ │ ├── wl_surface_state.dart │ │ ├── x11_surface_state.dart │ │ ├── xdg_popup_state.dart │ │ ├── xdg_surface_state.dart │ │ └── xdg_toplevel_state.dart │ └── widget │ │ ├── activate_and_raise.dart │ │ ├── subsurface.dart │ │ ├── surface.dart │ │ ├── surface │ │ ├── contain_to_input_region.dart │ │ ├── pointer_listener.dart │ │ ├── surface_focus.dart │ │ ├── view_input_listener.dart │ │ └── xdg_popup │ │ │ └── popup.dart │ │ ├── surface_size.dart │ │ ├── x11_surface.dart │ │ └── xdg_toplevel_surface.dart ├── window │ ├── model │ │ ├── dialog_window.dart │ │ ├── ephemeral_window.dart │ │ ├── matching_info.serializable.dart │ │ ├── persistent_window.serializable.dart │ │ ├── window_base.dart │ │ ├── window_id.dart │ │ ├── window_move.dart │ │ ├── window_properties.serializable.dart │ │ ├── window_resize.dart │ │ └── window_stack.dart │ ├── provider │ │ ├── dialog_list_for_window.dart │ │ ├── dialog_window_state.dart │ │ ├── ephemeral_window_state.dart │ │ ├── persistent_window_state.dart │ │ ├── surface_window_map.dart │ │ ├── window_manager │ │ │ ├── matching_engine.dart │ │ │ ├── matching_utils.dart │ │ │ ├── weighted_matching.dart │ │ │ └── window_manager.dart │ │ ├── window_move.dart │ │ ├── window_position.dart │ │ ├── window_properties.dart │ │ ├── window_provider.mixin.dart │ │ ├── window_resize.dart │ │ └── window_stack.dart │ └── widget │ │ └── ephemeral_window.dart └── workspace │ ├── model │ ├── workspace.serializable.dart │ └── workspace_shortcuts.dart │ ├── provider │ ├── current_workspace_id.dart │ ├── window_workspace_map.dart │ └── workspace_state.dart │ └── widget │ ├── layout │ └── horizontal.dart │ ├── tileable │ ├── persistent_application_launcher │ │ ├── app_drawer │ │ │ ├── app_drawer.dart │ │ │ └── app_grid.dart │ │ └── persistent_application_launcher.dart │ ├── persistent_window │ │ ├── persistent_window.dart │ │ └── window_placeholder.dart │ └── tileable.dart │ ├── tileable_list.dart │ ├── workspace.dart │ └── workspace_panel.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── README.md ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── pubspec.lock └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/flutter.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/.vscode/flutter.code-snippets -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/GUIDELINES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/LICENSE copy -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/commands/build.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/bin/commands/build.dart -------------------------------------------------------------------------------- /bin/commands/clean.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/bin/commands/clean.dart -------------------------------------------------------------------------------- /bin/commands/dependency/check_depencies.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/bin/commands/dependency/check_depencies.dart -------------------------------------------------------------------------------- /bin/commands/dependency/package_manager/apt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/bin/commands/dependency/package_manager/apt.dart -------------------------------------------------------------------------------- /bin/commands/dependency/package_manager/dnf.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/bin/commands/dependency/package_manager/dnf.dart -------------------------------------------------------------------------------- /bin/commands/dependency/package_manager/package_manager_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/bin/commands/dependency/package_manager/package_manager_base.dart -------------------------------------------------------------------------------- /bin/commands/dependency/package_manager/pacman.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/bin/commands/dependency/package_manager/pacman.dart -------------------------------------------------------------------------------- /bin/commands/dev.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/bin/commands/dev.dart -------------------------------------------------------------------------------- /bin/commands/install.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/bin/commands/install.dart -------------------------------------------------------------------------------- /bin/commands/run.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/bin/commands/run.dart -------------------------------------------------------------------------------- /bin/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/bin/util.dart -------------------------------------------------------------------------------- /bin/veshell.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/bin/veshell.dart -------------------------------------------------------------------------------- /dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/dependencies.md -------------------------------------------------------------------------------- /embedder/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/Cargo.lock -------------------------------------------------------------------------------- /embedder/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/Cargo.toml -------------------------------------------------------------------------------- /embedder/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/build.rs -------------------------------------------------------------------------------- /embedder/resources/cursor.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/resources/cursor.rgba -------------------------------------------------------------------------------- /embedder/src/backend/drm_backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/backend/drm_backend.rs -------------------------------------------------------------------------------- /embedder/src/backend/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/backend/mod.rs -------------------------------------------------------------------------------- /embedder/src/backend/x11_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/backend/x11_client.rs -------------------------------------------------------------------------------- /embedder/src/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/cursor.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/callbacks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/callbacks.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/embedder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/embedder.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/mod.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channel_callbacks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channel_callbacks.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/README.md -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/basic_message_channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/basic_message_channel.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/binary_messenger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/binary_messenger.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/binary_messenger_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/binary_messenger_impl.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/byte_buffer_streams.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/byte_buffer_streams.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/byte_streams.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/byte_streams.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/encodable_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/encodable_value.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/engine_method_result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/engine_method_result.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/json_message_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/json_message_codec.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/json_method_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/json_method_codec.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/message_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/message_codec.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/method_call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/method_call.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/method_channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/method_channel.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/method_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/method_codec.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/method_result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/method_result.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/method_result_functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/method_result_functions.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/method_result_mpsc_channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/method_result_mpsc_channel.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/standard_codec_serializer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/standard_codec_serializer.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/standard_message_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/standard_message_codec.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/standard_method_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/standard_method_codec.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/text_input_model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/text_input_model.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/platform_channels/text_range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/platform_channels/text_range.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/task_runner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/task_runner.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/text_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/text_input.rs -------------------------------------------------------------------------------- /embedder/src/flutter_engine/wayland_messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/flutter_engine/wayland_messages.rs -------------------------------------------------------------------------------- /embedder/src/focus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/focus.rs -------------------------------------------------------------------------------- /embedder/src/gles_framebuffer_importer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/gles_framebuffer_importer.rs -------------------------------------------------------------------------------- /embedder/src/input_handling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/input_handling.rs -------------------------------------------------------------------------------- /embedder/src/keyboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/keyboard.rs -------------------------------------------------------------------------------- /embedder/src/keyboard/glfw_key_codes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/keyboard/glfw_key_codes.rs -------------------------------------------------------------------------------- /embedder/src/keyboard/key_repeater.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/keyboard/key_repeater.rs -------------------------------------------------------------------------------- /embedder/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/main.rs -------------------------------------------------------------------------------- /embedder/src/mouse_button_tracker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/mouse_button_tracker.rs -------------------------------------------------------------------------------- /embedder/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/state.rs -------------------------------------------------------------------------------- /embedder/src/texture_swap_chain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/texture_swap_chain.rs -------------------------------------------------------------------------------- /embedder/src/wayland/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/wayland/mod.rs -------------------------------------------------------------------------------- /embedder/src/wayland/xdg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/wayland/xdg.rs -------------------------------------------------------------------------------- /embedder/src/xwayland.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/src/xwayland.rs -------------------------------------------------------------------------------- /embedder/third_party/flutter_engine/embedder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/third_party/flutter_engine/embedder.h -------------------------------------------------------------------------------- /embedder/third_party/smithay-drm-extras/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/third_party/smithay-drm-extras/Cargo.toml -------------------------------------------------------------------------------- /embedder/third_party/smithay-drm-extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/third_party/smithay-drm-extras/README.md -------------------------------------------------------------------------------- /embedder/third_party/smithay-drm-extras/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/third_party/smithay-drm-extras/build.rs -------------------------------------------------------------------------------- /embedder/third_party/smithay-drm-extras/src/docs/doctest_helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/third_party/smithay-drm-extras/src/docs/doctest_helpers.rs -------------------------------------------------------------------------------- /embedder/third_party/smithay-drm-extras/src/drm_scanner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/third_party/smithay-drm-extras/src/drm_scanner.rs -------------------------------------------------------------------------------- /embedder/third_party/smithay-drm-extras/src/drm_scanner/connector_scanner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/third_party/smithay-drm-extras/src/drm_scanner/connector_scanner.rs -------------------------------------------------------------------------------- /embedder/third_party/smithay-drm-extras/src/drm_scanner/crtc_mapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/third_party/smithay-drm-extras/src/drm_scanner/crtc_mapper.rs -------------------------------------------------------------------------------- /embedder/third_party/smithay-drm-extras/src/edid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/third_party/smithay-drm-extras/src/edid.rs -------------------------------------------------------------------------------- /embedder/third_party/smithay-drm-extras/src/hwdata/generated/pnp_ids.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/third_party/smithay-drm-extras/src/hwdata/generated/pnp_ids.rs -------------------------------------------------------------------------------- /embedder/third_party/smithay-drm-extras/src/hwdata/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/third_party/smithay-drm-extras/src/hwdata/mod.rs -------------------------------------------------------------------------------- /embedder/third_party/smithay-drm-extras/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/embedder/third_party/smithay-drm-extras/src/lib.rs -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /shell/.config/custom_devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/.config/custom_devices.json -------------------------------------------------------------------------------- /shell/.config/settings: -------------------------------------------------------------------------------- 1 | { 2 | "enable-custom-devices": true 3 | } 4 | -------------------------------------------------------------------------------- /shell/.config/tool_state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/.config/tool_state -------------------------------------------------------------------------------- /shell/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/.gitignore -------------------------------------------------------------------------------- /shell/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/analysis_options.yaml -------------------------------------------------------------------------------- /shell/assets/ship_vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/assets/ship_vector.svg -------------------------------------------------------------------------------- /shell/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/build.yaml -------------------------------------------------------------------------------- /shell/lib/application/model/launch_config.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/application/model/launch_config.serializable.dart -------------------------------------------------------------------------------- /shell/lib/application/provider/app_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/application/provider/app_drawer.dart -------------------------------------------------------------------------------- /shell/lib/application/provider/app_drawer_desktop_entries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/application/provider/app_drawer_desktop_entries.dart -------------------------------------------------------------------------------- /shell/lib/application/provider/app_launch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/application/provider/app_launch.dart -------------------------------------------------------------------------------- /shell/lib/application/provider/desktop_entries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/application/provider/desktop_entries.dart -------------------------------------------------------------------------------- /shell/lib/application/provider/file_to_scalable_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/application/provider/file_to_scalable_image.dart -------------------------------------------------------------------------------- /shell/lib/application/provider/icon_themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/application/provider/icon_themes.dart -------------------------------------------------------------------------------- /shell/lib/application/provider/image_from_icon_query.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/application/provider/image_from_icon_query.dart -------------------------------------------------------------------------------- /shell/lib/application/provider/localized_desktop_entries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/application/provider/localized_desktop_entries.dart -------------------------------------------------------------------------------- /shell/lib/application/widget/app_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/application/widget/app_icon.dart -------------------------------------------------------------------------------- /shell/lib/display/model/display.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/display/model/display.dart -------------------------------------------------------------------------------- /shell/lib/display/provider/display.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/display/provider/display.dart -------------------------------------------------------------------------------- /shell/lib/display/widget/display.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/display/widget/display.dart -------------------------------------------------------------------------------- /shell/lib/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/enums.dart -------------------------------------------------------------------------------- /shell/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/main.dart -------------------------------------------------------------------------------- /shell/lib/monitor/model/monitor.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/monitor/model/monitor.serializable.dart -------------------------------------------------------------------------------- /shell/lib/monitor/model/monitor_configuration.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/monitor/model/monitor_configuration.serializable.dart -------------------------------------------------------------------------------- /shell/lib/monitor/model/screen_configuration.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/monitor/model/screen_configuration.serializable.dart -------------------------------------------------------------------------------- /shell/lib/monitor/provider/current_monitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/monitor/provider/current_monitor.dart -------------------------------------------------------------------------------- /shell/lib/monitor/provider/monitor_configuration_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/monitor/provider/monitor_configuration_state.dart -------------------------------------------------------------------------------- /shell/lib/monitor/provider/monitor_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/monitor/provider/monitor_list.dart -------------------------------------------------------------------------------- /shell/lib/monitor/widget/monitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/monitor/widget/monitor.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/control_panel/bluetooth/model/bluetooth_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/control_panel/bluetooth/model/bluetooth_device.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/control_panel/bluetooth/model/bluetooth_manager_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/control_panel/bluetooth/model/bluetooth_manager_state.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/control_panel/bluetooth/provider/bluetooth_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/control_panel/bluetooth/provider/bluetooth_device.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/control_panel/bluetooth/provider/bluetooth_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/control_panel/bluetooth/provider/bluetooth_manager.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/control_panel/bluetooth/widget/bluetooth_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/control_panel/bluetooth/widget/bluetooth_control.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/control_panel/bluetooth/widget/bluetooth_device_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/control_panel/bluetooth/widget/bluetooth_device_icon.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/control_panel/bluetooth/widget/bluetooth_device_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/control_panel/bluetooth/widget/bluetooth_device_list_tile.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/control_panel/widget/audio_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/control_panel/widget/audio_output.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/control_panel/widget/control_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/control_panel/widget/control_panel.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/control_panel/widget/session_controls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/control_panel/widget/session_controls.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/monitoring_panel/cpu_monitoring/model/cpu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/model/cpu.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/monitoring_panel/cpu_monitoring/model/cpu_line.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/model/cpu_line.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/monitoring_panel/cpu_monitoring/model/processes_cpu_stats_snapshot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/model/processes_cpu_stats_snapshot.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/monitoring_panel/cpu_monitoring/provider/cpu_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/provider/cpu_stats.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/monitoring_panel/cpu_monitoring/provider/process_name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/provider/process_name.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/monitoring_panel/cpu_monitoring/provider/processes_cpu_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/provider/processes_cpu_stats.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/monitoring_panel/cpu_monitoring/widget/cpu_monitoring.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/widget/cpu_monitoring.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/monitoring_panel/model/process_stat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/monitoring_panel/model/process_stat.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/monitoring_panel/provider/process_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/monitoring_panel/provider/process_list.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/monitoring_panel/widget/monitoring_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/monitoring_panel/widget/monitoring_panel.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/notification_panel/widget/notification_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/notification_panel/widget/notification_panel.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/provider/audio_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/provider/audio_output.dart -------------------------------------------------------------------------------- /shell/lib/overview/helm/widget/helm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/helm/widget/helm.dart -------------------------------------------------------------------------------- /shell/lib/overview/model/overview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/model/overview.dart -------------------------------------------------------------------------------- /shell/lib/overview/provider/overview_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/provider/overview_state.dart -------------------------------------------------------------------------------- /shell/lib/overview/search/widget/application_search_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/search/widget/application_search_result.dart -------------------------------------------------------------------------------- /shell/lib/overview/search/widget/file_search_result.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shell/lib/overview/search/widget/search_engine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/search/widget/search_engine.dart -------------------------------------------------------------------------------- /shell/lib/overview/search/widget/search_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/search/widget/search_input.dart -------------------------------------------------------------------------------- /shell/lib/overview/search/widget/settings_search_result.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shell/lib/overview/widget/overview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/widget/overview.dart -------------------------------------------------------------------------------- /shell/lib/overview/widget/overview_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/overview/widget/overview_content.dart -------------------------------------------------------------------------------- /shell/lib/pointer/model/pointer_focus.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/pointer/model/pointer_focus.serializable.dart -------------------------------------------------------------------------------- /shell/lib/pointer/provider/pointer_focus.manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/pointer/provider/pointer_focus.manager.dart -------------------------------------------------------------------------------- /shell/lib/polkit/model/authentication_agent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/polkit/model/authentication_agent.dart -------------------------------------------------------------------------------- /shell/lib/polkit/model/org.freedesktop.PolicyKit1.AuthenticationAgent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/polkit/model/org.freedesktop.PolicyKit1.AuthenticationAgent.dart -------------------------------------------------------------------------------- /shell/lib/polkit/model/org.freedesktop.PolicyKit1.AuthenticationAgent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/polkit/model/org.freedesktop.PolicyKit1.AuthenticationAgent.xml -------------------------------------------------------------------------------- /shell/lib/polkit/model/polkit-agent-helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/polkit/model/polkit-agent-helper.dart -------------------------------------------------------------------------------- /shell/lib/polkit/provider/authentication_agent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/polkit/provider/authentication_agent.dart -------------------------------------------------------------------------------- /shell/lib/polkit/widget/polkit_authentication_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/polkit/widget/polkit_authentication_dialog.dart -------------------------------------------------------------------------------- /shell/lib/screen/model/screen.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/screen/model/screen.serializable.dart -------------------------------------------------------------------------------- /shell/lib/screen/model/screen_shortcuts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/screen/model/screen_shortcuts.dart -------------------------------------------------------------------------------- /shell/lib/screen/model/workspace_drag_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/screen/model/workspace_drag_data.dart -------------------------------------------------------------------------------- /shell/lib/screen/provider/current_screen_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/screen/provider/current_screen_id.dart -------------------------------------------------------------------------------- /shell/lib/screen/provider/focused_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/screen/provider/focused_screen.dart -------------------------------------------------------------------------------- /shell/lib/screen/provider/screen_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/screen/provider/screen_list.dart -------------------------------------------------------------------------------- /shell/lib/screen/provider/screen_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/screen/provider/screen_state.dart -------------------------------------------------------------------------------- /shell/lib/screen/provider/workspace_display_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/screen/provider/workspace_display_mode.dart -------------------------------------------------------------------------------- /shell/lib/screen/widget/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/screen/widget/screen.dart -------------------------------------------------------------------------------- /shell/lib/screen/widget/screen_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/screen/widget/screen_panel.dart -------------------------------------------------------------------------------- /shell/lib/screen/widget/workspace_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/screen/widget/workspace_list.dart -------------------------------------------------------------------------------- /shell/lib/shared/bluez/provider/bluez_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/bluez/provider/bluez_client.dart -------------------------------------------------------------------------------- /shell/lib/shared/bluez/provider/bluez_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/bluez/provider/bluez_device.dart -------------------------------------------------------------------------------- /shell/lib/shared/bluez/provider/bluez_device_added.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/bluez/provider/bluez_device_added.dart -------------------------------------------------------------------------------- /shell/lib/shared/bluez/provider/bluez_device_removed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/bluez/provider/bluez_device_removed.dart -------------------------------------------------------------------------------- /shell/lib/shared/bluez/provider/bluez_devices.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/bluez/provider/bluez_devices.dart -------------------------------------------------------------------------------- /shell/lib/shared/nm/provider/nm_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/nm/provider/nm_client.dart -------------------------------------------------------------------------------- /shell/lib/shared/nm/provider/nm_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/nm/provider/nm_device.dart -------------------------------------------------------------------------------- /shell/lib/shared/nm/provider/nm_device_added.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/nm/provider/nm_device_added.dart -------------------------------------------------------------------------------- /shell/lib/shared/nm/provider/nm_device_removed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/nm/provider/nm_device_removed.dart -------------------------------------------------------------------------------- /shell/lib/shared/nm/provider/nm_devices.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/nm/provider/nm_devices.dart -------------------------------------------------------------------------------- /shell/lib/shared/persistence/persistable_model.mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/persistence/persistable_model.mixin.dart -------------------------------------------------------------------------------- /shell/lib/shared/persistence/persistable_provider.mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/persistence/persistable_provider.mixin.dart -------------------------------------------------------------------------------- /shell/lib/shared/persistence/persistence_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/persistence/persistence_manager.dart -------------------------------------------------------------------------------- /shell/lib/shared/provider/cursor_position.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/provider/cursor_position.dart -------------------------------------------------------------------------------- /shell/lib/shared/provider/dbus_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/provider/dbus_client.dart -------------------------------------------------------------------------------- /shell/lib/shared/provider/mouse_button_tracker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/provider/mouse_button_tracker.dart -------------------------------------------------------------------------------- /shell/lib/shared/provider/now_date_time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/provider/now_date_time.dart -------------------------------------------------------------------------------- /shell/lib/shared/provider/persistent_json_by_folder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/provider/persistent_json_by_folder.dart -------------------------------------------------------------------------------- /shell/lib/shared/provider/root_overlay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/provider/root_overlay.dart -------------------------------------------------------------------------------- /shell/lib/shared/state/task_switcher/model/task_switcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/state/task_switcher/model/task_switcher.dart -------------------------------------------------------------------------------- /shell/lib/shared/state/task_switcher/provider/task_switcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/state/task_switcher/provider/task_switcher.dart -------------------------------------------------------------------------------- /shell/lib/shared/tasks/model/tasks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/tasks/model/tasks.dart -------------------------------------------------------------------------------- /shell/lib/shared/tasks/provider/tasks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/tasks/provider/tasks.dart -------------------------------------------------------------------------------- /shell/lib/shared/util/json_converter/offset.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/util/json_converter/offset.dart -------------------------------------------------------------------------------- /shell/lib/shared/util/json_converter/rect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/util/json_converter/rect.dart -------------------------------------------------------------------------------- /shell/lib/shared/util/json_converter/size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/util/json_converter/size.dart -------------------------------------------------------------------------------- /shell/lib/shared/util/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/util/logger.dart -------------------------------------------------------------------------------- /shell/lib/shared/util/raw_gesture_recognizer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/util/raw_gesture_recognizer.dart -------------------------------------------------------------------------------- /shell/lib/shared/util/rect_overflow_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/util/rect_overflow_box.dart -------------------------------------------------------------------------------- /shell/lib/shared/widget/clock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/widget/clock.dart -------------------------------------------------------------------------------- /shell/lib/shared/widget/cross_reorderable_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/widget/cross_reorderable_list.dart -------------------------------------------------------------------------------- /shell/lib/shared/widget/number_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/widget/number_picker.dart -------------------------------------------------------------------------------- /shell/lib/shared/widget/sliding_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/shared/widget/sliding_container.dart -------------------------------------------------------------------------------- /shell/lib/systemd/provider/session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/systemd/provider/session.dart -------------------------------------------------------------------------------- /shell/lib/theme/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/theme/theme.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/app_id_changed/app_id_changed.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/app_id_changed/app_id_changed.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/commit_surface/commit_surface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/commit_surface/commit_surface.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/destroy_popup/destroy_popup.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/destroy_popup/destroy_popup.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/destroy_subsurface/destroy_subsurface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/destroy_subsurface/destroy_subsurface.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/destroy_surface/destroy_surface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/destroy_surface/destroy_surface.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/destroy_toplevel/destroy_toplevel.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/destroy_toplevel/destroy_toplevel.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/destroy_x11_surface/destroy_x11_surface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/destroy_x11_surface/destroy_x11_surface.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/destroy_xdg_surface/destroy_xdg_surface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/destroy_xdg_surface/destroy_xdg_surface.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/interactive_move/interactive_move.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/interactive_move/interactive_move.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/interactive_resize/interactive_resize.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/interactive_resize/interactive_resize.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/map_x11_surface/map_x11_surface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/map_x11_surface/map_x11_surface.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/monitor_layout_changed/monitor_layout_changed.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/monitor_layout_changed/monitor_layout_changed.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/new_popup/new_popup.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/new_popup/new_popup.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/new_subsurface/new_subsurface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/new_subsurface/new_subsurface.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/new_surface/new_surface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/new_surface/new_surface.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/new_toplevel/new_toplevel.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/new_toplevel/new_toplevel.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/new_x11_surface/new_x11_surface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/new_x11_surface/new_x11_surface.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/set_environment_variables/set_environment_variables.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/set_environment_variables/set_environment_variables.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/surface_associated/surface_associated.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/surface_associated/surface_associated.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/title_changed/title_changed.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/title_changed/title_changed.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/unmap_x11_surface/unmap_x11_surface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/unmap_x11_surface/unmap_x11_surface.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/wayland_event.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/wayland_event.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/event/x11_properties_changed/x11_properties_changed.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/event/x11_properties_changed/x11_properties_changed.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/request/activate_window/activate_window.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/request/activate_window/activate_window.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/request/close_window/close_window.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/request/close_window/close_window.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/request/get_environment_variables/get_environment_variables.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/request/get_environment_variables/get_environment_variables.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/request/get_monitor_layout/get_monitor_layout.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/request/get_monitor_layout/get_monitor_layout.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/request/maximize_window/maximize_window.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/request/maximize_window/maximize_window.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/request/mouse_buttons_event/mouse_buttons_event.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/request/mouse_buttons_event/mouse_buttons_event.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/request/pointer_focus/pointer_focus.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/request/pointer_focus/pointer_focus.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/request/resize_window/resize_window.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/request/resize_window/resize_window.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/request/shell_ready/shell_ready.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/request/shell_ready/shell_ready.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/request/touch/touch.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/request/touch/touch.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/request/unregister_view_texture/unregister_view_texture.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/request/unregister_view_texture/unregister_view_texture.serializable.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/request/wayland_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/request/wayland_request.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/subsurface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/subsurface.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/surface_manager_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/surface_manager_state.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/wl_surface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/wl_surface.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/x11_surface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/x11_surface.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/xdg_popup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/xdg_popup.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/xdg_surface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/xdg_surface.dart -------------------------------------------------------------------------------- /shell/lib/wayland/model/xdg_toplevel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/model/xdg_toplevel.dart -------------------------------------------------------------------------------- /shell/lib/wayland/provider/environment_variables.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/provider/environment_variables.dart -------------------------------------------------------------------------------- /shell/lib/wayland/provider/subsurface_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/provider/subsurface_state.dart -------------------------------------------------------------------------------- /shell/lib/wayland/provider/surface.manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/provider/surface.manager.dart -------------------------------------------------------------------------------- /shell/lib/wayland/provider/wayland.manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/provider/wayland.manager.dart -------------------------------------------------------------------------------- /shell/lib/wayland/provider/wl_surface_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/provider/wl_surface_state.dart -------------------------------------------------------------------------------- /shell/lib/wayland/provider/x11_surface_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/provider/x11_surface_state.dart -------------------------------------------------------------------------------- /shell/lib/wayland/provider/xdg_popup_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/provider/xdg_popup_state.dart -------------------------------------------------------------------------------- /shell/lib/wayland/provider/xdg_surface_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/provider/xdg_surface_state.dart -------------------------------------------------------------------------------- /shell/lib/wayland/provider/xdg_toplevel_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/provider/xdg_toplevel_state.dart -------------------------------------------------------------------------------- /shell/lib/wayland/widget/activate_and_raise.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/widget/activate_and_raise.dart -------------------------------------------------------------------------------- /shell/lib/wayland/widget/subsurface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/widget/subsurface.dart -------------------------------------------------------------------------------- /shell/lib/wayland/widget/surface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/widget/surface.dart -------------------------------------------------------------------------------- /shell/lib/wayland/widget/surface/contain_to_input_region.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/widget/surface/contain_to_input_region.dart -------------------------------------------------------------------------------- /shell/lib/wayland/widget/surface/pointer_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/widget/surface/pointer_listener.dart -------------------------------------------------------------------------------- /shell/lib/wayland/widget/surface/surface_focus.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/widget/surface/surface_focus.dart -------------------------------------------------------------------------------- /shell/lib/wayland/widget/surface/view_input_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/widget/surface/view_input_listener.dart -------------------------------------------------------------------------------- /shell/lib/wayland/widget/surface/xdg_popup/popup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/widget/surface/xdg_popup/popup.dart -------------------------------------------------------------------------------- /shell/lib/wayland/widget/surface_size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/widget/surface_size.dart -------------------------------------------------------------------------------- /shell/lib/wayland/widget/x11_surface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/widget/x11_surface.dart -------------------------------------------------------------------------------- /shell/lib/wayland/widget/xdg_toplevel_surface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/wayland/widget/xdg_toplevel_surface.dart -------------------------------------------------------------------------------- /shell/lib/window/model/dialog_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/model/dialog_window.dart -------------------------------------------------------------------------------- /shell/lib/window/model/ephemeral_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/model/ephemeral_window.dart -------------------------------------------------------------------------------- /shell/lib/window/model/matching_info.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/model/matching_info.serializable.dart -------------------------------------------------------------------------------- /shell/lib/window/model/persistent_window.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/model/persistent_window.serializable.dart -------------------------------------------------------------------------------- /shell/lib/window/model/window_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/model/window_base.dart -------------------------------------------------------------------------------- /shell/lib/window/model/window_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/model/window_id.dart -------------------------------------------------------------------------------- /shell/lib/window/model/window_move.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/model/window_move.dart -------------------------------------------------------------------------------- /shell/lib/window/model/window_properties.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/model/window_properties.serializable.dart -------------------------------------------------------------------------------- /shell/lib/window/model/window_resize.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/model/window_resize.dart -------------------------------------------------------------------------------- /shell/lib/window/model/window_stack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/model/window_stack.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/dialog_list_for_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/dialog_list_for_window.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/dialog_window_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/dialog_window_state.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/ephemeral_window_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/ephemeral_window_state.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/persistent_window_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/persistent_window_state.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/surface_window_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/surface_window_map.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/window_manager/matching_engine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/window_manager/matching_engine.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/window_manager/matching_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/window_manager/matching_utils.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/window_manager/weighted_matching.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/window_manager/weighted_matching.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/window_manager/window_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/window_manager/window_manager.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/window_move.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/window_move.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/window_position.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/window_position.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/window_properties.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/window_properties.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/window_provider.mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/window_provider.mixin.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/window_resize.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/window_resize.dart -------------------------------------------------------------------------------- /shell/lib/window/provider/window_stack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/provider/window_stack.dart -------------------------------------------------------------------------------- /shell/lib/window/widget/ephemeral_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/window/widget/ephemeral_window.dart -------------------------------------------------------------------------------- /shell/lib/workspace/model/workspace.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/model/workspace.serializable.dart -------------------------------------------------------------------------------- /shell/lib/workspace/model/workspace_shortcuts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/model/workspace_shortcuts.dart -------------------------------------------------------------------------------- /shell/lib/workspace/provider/current_workspace_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/provider/current_workspace_id.dart -------------------------------------------------------------------------------- /shell/lib/workspace/provider/window_workspace_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/provider/window_workspace_map.dart -------------------------------------------------------------------------------- /shell/lib/workspace/provider/workspace_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/provider/workspace_state.dart -------------------------------------------------------------------------------- /shell/lib/workspace/widget/layout/horizontal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/widget/layout/horizontal.dart -------------------------------------------------------------------------------- /shell/lib/workspace/widget/tileable/persistent_application_launcher/app_drawer/app_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/widget/tileable/persistent_application_launcher/app_drawer/app_drawer.dart -------------------------------------------------------------------------------- /shell/lib/workspace/widget/tileable/persistent_application_launcher/app_drawer/app_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/widget/tileable/persistent_application_launcher/app_drawer/app_grid.dart -------------------------------------------------------------------------------- /shell/lib/workspace/widget/tileable/persistent_application_launcher/persistent_application_launcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/widget/tileable/persistent_application_launcher/persistent_application_launcher.dart -------------------------------------------------------------------------------- /shell/lib/workspace/widget/tileable/persistent_window/persistent_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/widget/tileable/persistent_window/persistent_window.dart -------------------------------------------------------------------------------- /shell/lib/workspace/widget/tileable/persistent_window/window_placeholder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/widget/tileable/persistent_window/window_placeholder.dart -------------------------------------------------------------------------------- /shell/lib/workspace/widget/tileable/tileable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/widget/tileable/tileable.dart -------------------------------------------------------------------------------- /shell/lib/workspace/widget/tileable_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/widget/tileable_list.dart -------------------------------------------------------------------------------- /shell/lib/workspace/widget/workspace.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/widget/workspace.dart -------------------------------------------------------------------------------- /shell/lib/workspace/widget/workspace_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/lib/workspace/widget/workspace_panel.dart -------------------------------------------------------------------------------- /shell/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /shell/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/linux/CMakeLists.txt -------------------------------------------------------------------------------- /shell/linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/linux/README.md -------------------------------------------------------------------------------- /shell/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /shell/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /shell/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /shell/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /shell/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/linux/main.cc -------------------------------------------------------------------------------- /shell/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/linux/my_application.cc -------------------------------------------------------------------------------- /shell/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/linux/my_application.h -------------------------------------------------------------------------------- /shell/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/pubspec.lock -------------------------------------------------------------------------------- /shell/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell-prototype/HEAD/shell/pubspec.yaml --------------------------------------------------------------------------------