├── .cargo └── config.toml ├── .github ├── ISSUE_TEMPLATE │ ├── 1_bug_report.md │ ├── 2_idea.md │ ├── 3_feature_specification.md │ └── config.yml └── workflows │ └── format_pr.yml ├── .gitignore ├── .vscode ├── extensions.json ├── flutter.code-snippets ├── launch.json ├── settings.json └── tasks.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── docs ├── GUIDELINES.md ├── adding_new_setting.md ├── assets │ ├── github_logo.svg │ ├── github_logo2.svg │ ├── spatialisation.gif │ ├── veshell_banner_dark.svg │ └── veshell_banner_light.svg ├── dependencies.md └── specifications │ ├── display.md │ ├── ephemeral_application_launcher.md │ ├── ephemeral_window.md │ ├── matching_algorithm.md │ ├── monitor.md │ ├── overview.md │ ├── persistent_application_launcher.md │ ├── persistent_window.md │ ├── readme.md │ ├── screen.md │ ├── screen_panel.md │ ├── state_manager.md │ ├── tileable.md │ ├── window_manager.md │ ├── workspace.md │ └── workspace_panel.md ├── extra ├── assets │ ├── veshell-portals.conf │ ├── veshell-session │ ├── veshell-shutdown.target │ ├── veshell.desktop │ └── veshell.service.in ├── build │ ├── flutter_engine_lib.rs │ ├── flutter_sdk.rs │ ├── mod.rs │ └── shell.rs ├── settings │ ├── README.md │ ├── default │ │ └── settings.json │ └── schemas │ │ ├── hotkeys.schema.json │ │ └── settings.schema.json └── third_party │ └── 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 └── src ├── embedder ├── backend │ ├── drm_backend.rs │ ├── mod.rs │ ├── render │ │ ├── fractionnal_memory.rs │ │ ├── fractionnal_texture.rs │ │ └── mod.rs │ ├── winit.rs │ └── x11_client.rs ├── cursor.rs ├── engine_revision.rs ├── flutter_engine │ ├── callbacks.rs │ ├── compositor.rs │ ├── embedder.rs │ ├── mod.rs │ ├── mouse_cursor.rs │ ├── platform_channel_callbacks │ │ ├── activate_window.rs │ │ ├── close_window.rs │ │ ├── get_environment_variables.rs │ │ ├── get_monitor_layout.rs │ │ ├── meta_popup_patches.rs │ │ ├── meta_window_patches.rs │ │ ├── mod.rs │ │ ├── mouse_buttons_event.rs │ │ ├── on_shell_ready.rs │ │ ├── pointer_exit.rs │ │ ├── pointer_focus.rs │ │ └── resize_window.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 │ ├── trackpad_scrolling_manager.rs │ ├── view.rs │ └── wayland_messages.rs ├── focus.rs ├── gles_framebuffer_importer.rs ├── input_handling.rs ├── keyboard │ ├── key_mapping.rs │ ├── key_repeater.rs │ └── mod.rs ├── main.rs ├── meta_window_state │ ├── meta_popup.rs │ ├── meta_resize_edge.rs │ ├── meta_window.rs │ └── mod.rs ├── mouse_button_tracker.rs ├── resources │ └── cursor.rgba ├── settings │ ├── calloop_notify.rs │ └── mod.rs ├── state.rs ├── texture_swap_chain.rs └── wayland │ ├── fractionnal_scale.rs │ ├── mod.rs │ ├── xdg.rs │ └── xwayland.rs └── shell ├── .gitignore ├── analysis_options.yaml ├── assets ├── float-symbolic.svg └── 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 │ │ └── logs_for_pid.dart │ └── widget │ │ ├── app_icon.dart │ │ └── logs_viewer.dart ├── dev_tools │ ├── provider │ │ ├── dev_tools_enabled.dart │ │ └── matching_logs.dart │ └── widget │ │ ├── dev_tools_overview.dart │ │ ├── state_dev_view.dart │ │ ├── surface_list_dev_view.dart │ │ └── window_list_dev_view.dart ├── enums.dart ├── main.dart ├── meta_window │ ├── model │ │ ├── meta_popup.serializable.dart │ │ └── meta_window.serializable.dart │ ├── provider │ │ ├── meta_popup_for_id.dart │ │ ├── meta_popup_state.dart │ │ ├── meta_window_dragging_state.dart │ │ ├── meta_window_gaming_state.dart │ │ ├── meta_window_id_per_surface_id.dart │ │ ├── meta_window_manager.dart │ │ ├── meta_window_resizing_state.dart │ │ ├── meta_window_state.dart │ │ ├── meta_window_window_map.dart │ │ └── pid_to_meta_window_id.dart │ └── widget │ │ ├── meta_popup.dart │ │ ├── meta_surface.dart │ │ ├── meta_surface_decoration.dart │ │ ├── meta_surface_gaming_overlay.dart │ │ └── meta_surface_resize_handle.dart ├── monitor │ ├── model │ │ ├── monitor.serializable.dart │ │ ├── monitor_configuration.serializable.dart │ │ ├── monitor_manager_state.serializable.dart │ │ └── screen_configuration.serializable.dart │ ├── provider │ │ ├── connected_monitor_list.dart │ │ ├── monitor_by_name.dart │ │ ├── monitor_by_view_id.dart │ │ ├── monitor_configuration_state.dart │ │ └── monitor_manager.dart │ └── widget │ │ ├── current_screen_id.dart │ │ └── monitor.dart ├── notification │ ├── model │ │ ├── dbus_notification.serializable.dart │ │ ├── dbus_notification_server.dart │ │ ├── notification.serializable.dart │ │ ├── notification_hints.serializable.dart │ │ ├── notification_manager_state.serializable.dart │ │ ├── org.freedesktop.Notifications.dart │ │ └── org.freedesktop.Notifications.xml │ ├── provider │ │ ├── notification_channel.dart │ │ ├── notification_list.dart │ │ └── notification_manager.dart │ └── widget │ │ ├── notification.dart │ │ └── notification_area.dart ├── overview │ ├── helm │ │ ├── control_panel │ │ │ ├── audio │ │ │ │ └── widget │ │ │ │ │ └── audio_control.dart │ │ │ ├── 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 │ │ │ ├── network │ │ │ │ ├── ethernet │ │ │ │ │ ├── model │ │ │ │ │ │ └── ethernet_device.dart │ │ │ │ │ ├── provider │ │ │ │ │ │ └── ethernet_device.dart │ │ │ │ │ └── widget │ │ │ │ │ │ └── ethernet_control.dart │ │ │ │ ├── model │ │ │ │ │ └── device_transfer_monitoring.dart │ │ │ │ ├── provider │ │ │ │ │ └── device_transfer_monitoring.dart │ │ │ │ ├── widget │ │ │ │ │ ├── device_status.dart │ │ │ │ │ └── network_control.dart │ │ │ │ └── wifi │ │ │ │ │ ├── model │ │ │ │ │ ├── wifi_access_point.dart │ │ │ │ │ └── wifi_manager_state.dart │ │ │ │ │ ├── provider │ │ │ │ │ ├── connection_per_ssid.dart │ │ │ │ │ ├── single_expanded_state.dart │ │ │ │ │ ├── wifi_access_point_list.dart │ │ │ │ │ └── wifi_manager.dart │ │ │ │ │ └── widget │ │ │ │ │ ├── access_point_connection_dialog.dart │ │ │ │ │ ├── access_point_icon.dart │ │ │ │ │ ├── access_point_label.dart │ │ │ │ │ ├── available_access_point_list.dart │ │ │ │ │ ├── configured_access_point.dart │ │ │ │ │ ├── wifi_control.dart │ │ │ │ │ └── wifi_control_icon.dart │ │ │ └── widget │ │ │ │ ├── control_panel.dart │ │ │ │ └── session_controls.dart │ │ ├── monitoring_panel │ │ │ ├── cpu_monitoring │ │ │ │ ├── model │ │ │ │ │ ├── cpu.dart │ │ │ │ │ ├── cpu_line.dart │ │ │ │ │ └── processes_cpu_stats_snapshot.dart │ │ │ │ ├── provider │ │ │ │ │ ├── cpu_chart.dart │ │ │ │ │ ├── cpu_stats.dart │ │ │ │ │ └── processes_cpu_stats.dart │ │ │ │ └── widget │ │ │ │ │ └── cpu_monitoring.dart │ │ │ ├── disk_monitoring │ │ │ │ ├── provider │ │ │ │ │ └── disk_space.dart │ │ │ │ └── widget │ │ │ │ │ └── disk_usage_monitoring.dart │ │ │ ├── memory_monitoring │ │ │ │ ├── model │ │ │ │ │ ├── memory.dart │ │ │ │ │ └── memory_stats_snapshot.dart │ │ │ │ ├── provider │ │ │ │ │ ├── memory_chart.dart │ │ │ │ │ ├── memory_stats.dart │ │ │ │ │ └── processes_memory_stats.dart │ │ │ │ └── widget │ │ │ │ │ └── memory_monitoring.dart │ │ │ ├── model │ │ │ │ └── process_stat.dart │ │ │ ├── power_management │ │ │ │ ├── provider │ │ │ │ │ ├── any_upower_device.dart │ │ │ │ │ ├── upower_battery_device.dart │ │ │ │ │ ├── upower_client.dart │ │ │ │ │ └── upower_devices.dart │ │ │ │ └── widget │ │ │ │ │ └── battery_indicator.dart │ │ │ ├── provider │ │ │ │ ├── process_list.dart │ │ │ │ └── process_name.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 │ └── widget │ │ ├── overview.dart │ │ ├── overview_content.dart │ │ └── search │ │ ├── application_search_result.dart │ │ ├── file_search_result.dart │ │ ├── search_engine.dart │ │ ├── search_input.dart │ │ └── settings │ │ ├── setting_value.dart │ │ ├── setting_value_editor.dart │ │ └── settings_search_result.dart ├── platform │ ├── model │ │ ├── event │ │ │ ├── commit_surface │ │ │ │ └── commit_surface.serializable.dart │ │ │ ├── destroy_subsurface │ │ │ │ └── destroy_subsurface.serializable.dart │ │ │ ├── destroy_surface │ │ │ │ └── destroy_surface.serializable.dart │ │ │ ├── gesture_swipe │ │ │ │ ├── gesture_swipe_begin.serializable.dart │ │ │ │ ├── gesture_swipe_end.serializable.dart │ │ │ │ └── gesture_swipe_update.serializable.dart │ │ │ ├── interactive_move │ │ │ │ └── interactive_move.serializable.dart │ │ │ ├── interactive_resize │ │ │ │ └── interactive_resize.serializable.dart │ │ │ ├── meta_popup_created │ │ │ │ └── meta_popup_created.serializable.dart │ │ │ ├── meta_popup_patches │ │ │ │ └── meta_popup_patches.serializable.dart │ │ │ ├── meta_popup_removed │ │ │ │ └── meta_popup_removed.serializable.dart │ │ │ ├── meta_window_created │ │ │ │ └── meta_window_created.serializable.dart │ │ │ ├── meta_window_patches │ │ │ │ └── meta_window_patches.serializable.dart │ │ │ ├── meta_window_removed │ │ │ │ └── meta_window_removed.serializable.dart │ │ │ ├── monitor_layout_changed │ │ │ │ └── monitor_layout_changed.serializable.dart │ │ │ ├── new_subsurface │ │ │ │ └── new_subsurface.serializable.dart │ │ │ ├── new_surface │ │ │ │ └── new_surface.serializable.dart │ │ │ ├── platform_event.serializable.dart │ │ │ └── set_environment_variables │ │ │ │ └── set_environment_variables.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 │ │ │ ├── meta_popup_patches │ │ │ └── meta_popup_patches.dart │ │ │ ├── meta_window_patches │ │ │ └── meta_window_patches.dart │ │ │ ├── mouse_buttons_event │ │ │ └── mouse_buttons_event.serializable.dart │ │ │ ├── platform_request.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 │ ├── provider │ │ ├── environment_variables.dart │ │ └── platform_manager.dart │ └── widget │ │ └── swipe_gesture_detector.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_manager_state.serializable.dart │ │ └── workspace_drag_data.dart │ ├── provider │ │ ├── available_screen_list.dart │ │ ├── focused_screen.dart │ │ ├── monitor_for_screen.dart │ │ ├── screen_label.dart │ │ ├── screen_manager.dart │ │ ├── screen_state.dart │ │ └── workspace_display_mode.dart │ └── widget │ │ ├── current_screen_id.dart │ │ ├── screen.dart │ │ ├── screen_configuration_menu.dart │ │ ├── screen_panel.dart │ │ └── workspace_list.dart ├── settings │ ├── model │ │ ├── setting_definition.dart │ │ ├── setting_group.dart │ │ ├── setting_property.dart │ │ └── types │ │ │ └── monitor_setting.serializable.dart │ ├── provider │ │ ├── settings_properties.dart │ │ ├── state │ │ │ ├── hotkeys_setting.dart │ │ │ ├── icon_theme_setting.dart │ │ │ ├── monitor_setting_state.dart │ │ │ └── theme_color_setting.dart │ │ └── util │ │ │ ├── config_directory.dart │ │ │ ├── configured_settings_json.dart │ │ │ ├── default_config_directory.dart │ │ │ ├── default_settings_json.dart │ │ │ ├── json_value_by_path.dart │ │ │ ├── merged_settings_json.dart │ │ │ ├── monitor_setting_json.dart │ │ │ └── setting_definition_by_path.dart │ └── widget │ │ ├── expandable_search_result.dart │ │ ├── keyboard │ │ └── setting_property_hotkey_editor.dart │ │ ├── monitor │ │ ├── monitor_refresh_rate_editor.dart │ │ ├── monitor_refresh_rate_value.dart │ │ ├── monitor_resolution_editor.dart │ │ └── monitor_resolution_value.dart │ │ ├── primitive │ │ ├── setting_property_bool_editor.dart │ │ ├── setting_property_color_editor.dart │ │ ├── setting_property_double_editor.dart │ │ ├── setting_property_int_editor.dart │ │ └── setting_property_string_editor.dart │ │ └── quick_search_result.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 │ │ │ └── nm_statistics.dart │ ├── provider │ │ ├── cursor_position.dart │ │ ├── dbus_client.dart │ │ ├── mouse_button_tracker.dart │ │ ├── now_date_time.dart │ │ └── persistent_storage_state.dart │ ├── pulseaudio │ │ └── provider │ │ │ ├── default_sink.dart │ │ │ ├── default_source.dart │ │ │ ├── pulse_audio.dart │ │ │ ├── pulse_server_info.dart │ │ │ ├── pulse_sink_by_name.dart │ │ │ ├── pulse_sink_list.dart │ │ │ ├── pulse_source_by_name.dart │ │ │ └── pulse_source_list.dart │ ├── util │ │ ├── file.dart │ │ ├── json_converter │ │ │ ├── color.dart │ │ │ ├── logical_key_set.dart │ │ │ ├── offset.dart │ │ │ ├── rect.dart │ │ │ ├── resize_edge.dart │ │ │ └── size.dart │ │ ├── logger.dart │ │ ├── raw_gesture_recognizer.dart │ │ └── rect_overflow_box.dart │ └── widget │ │ ├── blurred_background_image.dart │ │ ├── clock.dart │ │ ├── container_with_positionnable_children │ │ └── container_with_positionnable_children.dart │ │ ├── cross_reorderable_list.dart │ │ ├── expandable.dart │ │ ├── expandable_card.dart │ │ ├── expandable_container.dart │ │ ├── hotkey_viewer.dart │ │ ├── number_picker.dart │ │ └── sliding_container.dart ├── shortcut_manager │ ├── model │ │ ├── screen_shortcuts.dart │ │ ├── string_to_key.dart │ │ └── system_intents.dart │ ├── provider │ │ └── hotkeys_activator.dart │ └── widget │ │ └── shortcut_manager.dart ├── systemd │ └── provider │ │ └── session.dart ├── theme │ └── provider │ │ └── theme.dart ├── wayland │ ├── model │ │ ├── subsurface.dart │ │ ├── surface_manager_state.dart │ │ └── wl_surface.dart │ ├── provider │ │ ├── subsurface_state.dart │ │ ├── surface.manager.dart │ │ └── wl_surface_state.dart │ └── widget │ │ ├── subsurface.dart │ │ ├── surface.dart │ │ ├── surface │ │ ├── contain_to_input_region.dart │ │ ├── pointer_listener.dart │ │ ├── surface_focus.dart │ │ └── view_input_listener.dart │ │ └── surface_size.dart ├── window │ ├── model │ │ ├── dialog_window.dart │ │ ├── ephemeral_window.dart │ │ ├── matching_info.serializable.dart │ │ ├── persistent_window.serializable.dart │ │ ├── window_base.dart │ │ ├── window_id.serializable.dart │ │ ├── window_manager_state.serializable.dart │ │ ├── window_move.dart │ │ ├── window_properties.serializable.dart │ │ ├── window_resize.dart │ │ └── window_stack.dart │ ├── provider │ │ ├── dialog_set_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 │ │ │ ├── window_manager.dart │ │ │ └── windows_available_for_matching.dart │ │ ├── window_provider.mixin.dart │ │ └── window_resize.dart │ └── widget │ │ ├── ephemeral_window.dart │ │ ├── floatable_window.dart │ │ ├── window.dart │ │ └── window_placeholder.dart └── workspace │ ├── model │ ├── workspace.serializable.dart │ └── workspace_shortcuts.dart │ ├── provider │ ├── window_workspace_map.dart │ └── workspace_state.dart │ └── widget │ ├── current_workspace_id.dart │ ├── tileable │ ├── persistent_application_launcher │ │ ├── app_drawer │ │ │ ├── app_drawer.dart │ │ │ └── app_grid.dart │ │ └── persistent_application_launcher.dart │ ├── persistent_window │ │ └── persistent_window.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 /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/.github/ISSUE_TEMPLATE/1_bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_idea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/.github/ISSUE_TEMPLATE/2_idea.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3_feature_specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/.github/ISSUE_TEMPLATE/3_feature_specification.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/format_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/.github/workflows/format_pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/flutter.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/.vscode/flutter.code-snippets -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/README.md -------------------------------------------------------------------------------- /docs/GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/GUIDELINES.md -------------------------------------------------------------------------------- /docs/adding_new_setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/adding_new_setting.md -------------------------------------------------------------------------------- /docs/assets/github_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/assets/github_logo.svg -------------------------------------------------------------------------------- /docs/assets/github_logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/assets/github_logo2.svg -------------------------------------------------------------------------------- /docs/assets/spatialisation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/assets/spatialisation.gif -------------------------------------------------------------------------------- /docs/assets/veshell_banner_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/assets/veshell_banner_dark.svg -------------------------------------------------------------------------------- /docs/assets/veshell_banner_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/assets/veshell_banner_light.svg -------------------------------------------------------------------------------- /docs/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/dependencies.md -------------------------------------------------------------------------------- /docs/specifications/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/display.md -------------------------------------------------------------------------------- /docs/specifications/ephemeral_application_launcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/ephemeral_application_launcher.md -------------------------------------------------------------------------------- /docs/specifications/ephemeral_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/ephemeral_window.md -------------------------------------------------------------------------------- /docs/specifications/matching_algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/matching_algorithm.md -------------------------------------------------------------------------------- /docs/specifications/monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/monitor.md -------------------------------------------------------------------------------- /docs/specifications/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/overview.md -------------------------------------------------------------------------------- /docs/specifications/persistent_application_launcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/persistent_application_launcher.md -------------------------------------------------------------------------------- /docs/specifications/persistent_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/persistent_window.md -------------------------------------------------------------------------------- /docs/specifications/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/readme.md -------------------------------------------------------------------------------- /docs/specifications/screen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/screen.md -------------------------------------------------------------------------------- /docs/specifications/screen_panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/screen_panel.md -------------------------------------------------------------------------------- /docs/specifications/state_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/state_manager.md -------------------------------------------------------------------------------- /docs/specifications/tileable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/tileable.md -------------------------------------------------------------------------------- /docs/specifications/window_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/window_manager.md -------------------------------------------------------------------------------- /docs/specifications/workspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/workspace.md -------------------------------------------------------------------------------- /docs/specifications/workspace_panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/docs/specifications/workspace_panel.md -------------------------------------------------------------------------------- /extra/assets/veshell-portals.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/assets/veshell-portals.conf -------------------------------------------------------------------------------- /extra/assets/veshell-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/assets/veshell-session -------------------------------------------------------------------------------- /extra/assets/veshell-shutdown.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/assets/veshell-shutdown.target -------------------------------------------------------------------------------- /extra/assets/veshell.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/assets/veshell.desktop -------------------------------------------------------------------------------- /extra/assets/veshell.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/assets/veshell.service.in -------------------------------------------------------------------------------- /extra/build/flutter_engine_lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/build/flutter_engine_lib.rs -------------------------------------------------------------------------------- /extra/build/flutter_sdk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/build/flutter_sdk.rs -------------------------------------------------------------------------------- /extra/build/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/build/mod.rs -------------------------------------------------------------------------------- /extra/build/shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/build/shell.rs -------------------------------------------------------------------------------- /extra/settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/settings/README.md -------------------------------------------------------------------------------- /extra/settings/default/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/settings/default/settings.json -------------------------------------------------------------------------------- /extra/settings/schemas/hotkeys.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/settings/schemas/hotkeys.schema.json -------------------------------------------------------------------------------- /extra/settings/schemas/settings.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/settings/schemas/settings.schema.json -------------------------------------------------------------------------------- /extra/third_party/smithay-drm-extras/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/third_party/smithay-drm-extras/Cargo.toml -------------------------------------------------------------------------------- /extra/third_party/smithay-drm-extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/third_party/smithay-drm-extras/README.md -------------------------------------------------------------------------------- /extra/third_party/smithay-drm-extras/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/third_party/smithay-drm-extras/build.rs -------------------------------------------------------------------------------- /extra/third_party/smithay-drm-extras/src/docs/doctest_helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/third_party/smithay-drm-extras/src/docs/doctest_helpers.rs -------------------------------------------------------------------------------- /extra/third_party/smithay-drm-extras/src/drm_scanner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/third_party/smithay-drm-extras/src/drm_scanner.rs -------------------------------------------------------------------------------- /extra/third_party/smithay-drm-extras/src/drm_scanner/connector_scanner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/third_party/smithay-drm-extras/src/drm_scanner/connector_scanner.rs -------------------------------------------------------------------------------- /extra/third_party/smithay-drm-extras/src/drm_scanner/crtc_mapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/third_party/smithay-drm-extras/src/drm_scanner/crtc_mapper.rs -------------------------------------------------------------------------------- /extra/third_party/smithay-drm-extras/src/edid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/third_party/smithay-drm-extras/src/edid.rs -------------------------------------------------------------------------------- /extra/third_party/smithay-drm-extras/src/hwdata/generated/pnp_ids.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/third_party/smithay-drm-extras/src/hwdata/generated/pnp_ids.rs -------------------------------------------------------------------------------- /extra/third_party/smithay-drm-extras/src/hwdata/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/third_party/smithay-drm-extras/src/hwdata/mod.rs -------------------------------------------------------------------------------- /extra/third_party/smithay-drm-extras/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/extra/third_party/smithay-drm-extras/src/lib.rs -------------------------------------------------------------------------------- /src/embedder/backend/drm_backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/backend/drm_backend.rs -------------------------------------------------------------------------------- /src/embedder/backend/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/backend/mod.rs -------------------------------------------------------------------------------- /src/embedder/backend/render/fractionnal_memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/backend/render/fractionnal_memory.rs -------------------------------------------------------------------------------- /src/embedder/backend/render/fractionnal_texture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/backend/render/fractionnal_texture.rs -------------------------------------------------------------------------------- /src/embedder/backend/render/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/backend/render/mod.rs -------------------------------------------------------------------------------- /src/embedder/backend/winit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/backend/winit.rs -------------------------------------------------------------------------------- /src/embedder/backend/x11_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/backend/x11_client.rs -------------------------------------------------------------------------------- /src/embedder/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/cursor.rs -------------------------------------------------------------------------------- /src/embedder/engine_revision.rs: -------------------------------------------------------------------------------- 1 | pub const ENGINE_REVISION: &str = "db49896cf2"; 2 | -------------------------------------------------------------------------------- /src/embedder/flutter_engine/callbacks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/callbacks.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/compositor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/compositor.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/embedder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/embedder.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/mod.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/mouse_cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/mouse_cursor.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channel_callbacks/activate_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channel_callbacks/activate_window.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channel_callbacks/close_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channel_callbacks/close_window.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channel_callbacks/get_environment_variables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channel_callbacks/get_environment_variables.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channel_callbacks/get_monitor_layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channel_callbacks/get_monitor_layout.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channel_callbacks/meta_popup_patches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channel_callbacks/meta_popup_patches.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channel_callbacks/meta_window_patches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channel_callbacks/meta_window_patches.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channel_callbacks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channel_callbacks/mod.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channel_callbacks/mouse_buttons_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channel_callbacks/mouse_buttons_event.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channel_callbacks/on_shell_ready.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channel_callbacks/on_shell_ready.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channel_callbacks/pointer_exit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channel_callbacks/pointer_exit.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channel_callbacks/pointer_focus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channel_callbacks/pointer_focus.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channel_callbacks/resize_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channel_callbacks/resize_window.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/README.md -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/basic_message_channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/basic_message_channel.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/binary_messenger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/binary_messenger.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/binary_messenger_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/binary_messenger_impl.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/byte_buffer_streams.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/byte_buffer_streams.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/byte_streams.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/byte_streams.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/encodable_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/encodable_value.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/engine_method_result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/engine_method_result.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/json_message_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/json_message_codec.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/json_method_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/json_method_codec.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/message_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/message_codec.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/method_call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/method_call.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/method_channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/method_channel.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/method_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/method_codec.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/method_result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/method_result.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/method_result_functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/method_result_functions.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/method_result_mpsc_channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/method_result_mpsc_channel.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/standard_codec_serializer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/standard_codec_serializer.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/standard_message_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/standard_message_codec.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/standard_method_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/standard_method_codec.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/text_input_model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/text_input_model.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/platform_channels/text_range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/platform_channels/text_range.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/task_runner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/task_runner.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/text_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/text_input.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/trackpad_scrolling_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/trackpad_scrolling_manager.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/view.rs -------------------------------------------------------------------------------- /src/embedder/flutter_engine/wayland_messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/flutter_engine/wayland_messages.rs -------------------------------------------------------------------------------- /src/embedder/focus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/focus.rs -------------------------------------------------------------------------------- /src/embedder/gles_framebuffer_importer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/gles_framebuffer_importer.rs -------------------------------------------------------------------------------- /src/embedder/input_handling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/input_handling.rs -------------------------------------------------------------------------------- /src/embedder/keyboard/key_mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/keyboard/key_mapping.rs -------------------------------------------------------------------------------- /src/embedder/keyboard/key_repeater.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/keyboard/key_repeater.rs -------------------------------------------------------------------------------- /src/embedder/keyboard/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/keyboard/mod.rs -------------------------------------------------------------------------------- /src/embedder/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/main.rs -------------------------------------------------------------------------------- /src/embedder/meta_window_state/meta_popup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/meta_window_state/meta_popup.rs -------------------------------------------------------------------------------- /src/embedder/meta_window_state/meta_resize_edge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/meta_window_state/meta_resize_edge.rs -------------------------------------------------------------------------------- /src/embedder/meta_window_state/meta_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/meta_window_state/meta_window.rs -------------------------------------------------------------------------------- /src/embedder/meta_window_state/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/meta_window_state/mod.rs -------------------------------------------------------------------------------- /src/embedder/mouse_button_tracker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/mouse_button_tracker.rs -------------------------------------------------------------------------------- /src/embedder/resources/cursor.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/resources/cursor.rgba -------------------------------------------------------------------------------- /src/embedder/settings/calloop_notify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/settings/calloop_notify.rs -------------------------------------------------------------------------------- /src/embedder/settings/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/settings/mod.rs -------------------------------------------------------------------------------- /src/embedder/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/state.rs -------------------------------------------------------------------------------- /src/embedder/texture_swap_chain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/texture_swap_chain.rs -------------------------------------------------------------------------------- /src/embedder/wayland/fractionnal_scale.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/wayland/fractionnal_scale.rs -------------------------------------------------------------------------------- /src/embedder/wayland/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/wayland/mod.rs -------------------------------------------------------------------------------- /src/embedder/wayland/xdg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/wayland/xdg.rs -------------------------------------------------------------------------------- /src/embedder/wayland/xwayland.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/embedder/wayland/xwayland.rs -------------------------------------------------------------------------------- /src/shell/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/.gitignore -------------------------------------------------------------------------------- /src/shell/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/analysis_options.yaml -------------------------------------------------------------------------------- /src/shell/assets/float-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/assets/float-symbolic.svg -------------------------------------------------------------------------------- /src/shell/assets/ship_vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/assets/ship_vector.svg -------------------------------------------------------------------------------- /src/shell/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/build.yaml -------------------------------------------------------------------------------- /src/shell/lib/application/model/launch_config.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/application/model/launch_config.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/application/provider/app_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/application/provider/app_drawer.dart -------------------------------------------------------------------------------- /src/shell/lib/application/provider/app_drawer_desktop_entries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/application/provider/app_drawer_desktop_entries.dart -------------------------------------------------------------------------------- /src/shell/lib/application/provider/app_launch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/application/provider/app_launch.dart -------------------------------------------------------------------------------- /src/shell/lib/application/provider/desktop_entries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/application/provider/desktop_entries.dart -------------------------------------------------------------------------------- /src/shell/lib/application/provider/file_to_scalable_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/application/provider/file_to_scalable_image.dart -------------------------------------------------------------------------------- /src/shell/lib/application/provider/icon_themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/application/provider/icon_themes.dart -------------------------------------------------------------------------------- /src/shell/lib/application/provider/image_from_icon_query.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/application/provider/image_from_icon_query.dart -------------------------------------------------------------------------------- /src/shell/lib/application/provider/localized_desktop_entries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/application/provider/localized_desktop_entries.dart -------------------------------------------------------------------------------- /src/shell/lib/application/provider/logs_for_pid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/application/provider/logs_for_pid.dart -------------------------------------------------------------------------------- /src/shell/lib/application/widget/app_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/application/widget/app_icon.dart -------------------------------------------------------------------------------- /src/shell/lib/application/widget/logs_viewer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/application/widget/logs_viewer.dart -------------------------------------------------------------------------------- /src/shell/lib/dev_tools/provider/dev_tools_enabled.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/dev_tools/provider/dev_tools_enabled.dart -------------------------------------------------------------------------------- /src/shell/lib/dev_tools/provider/matching_logs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/dev_tools/provider/matching_logs.dart -------------------------------------------------------------------------------- /src/shell/lib/dev_tools/widget/dev_tools_overview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/dev_tools/widget/dev_tools_overview.dart -------------------------------------------------------------------------------- /src/shell/lib/dev_tools/widget/state_dev_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/dev_tools/widget/state_dev_view.dart -------------------------------------------------------------------------------- /src/shell/lib/dev_tools/widget/surface_list_dev_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/dev_tools/widget/surface_list_dev_view.dart -------------------------------------------------------------------------------- /src/shell/lib/dev_tools/widget/window_list_dev_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/dev_tools/widget/window_list_dev_view.dart -------------------------------------------------------------------------------- /src/shell/lib/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/enums.dart -------------------------------------------------------------------------------- /src/shell/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/main.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/model/meta_popup.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/model/meta_popup.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/model/meta_window.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/model/meta_window.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/provider/meta_popup_for_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/provider/meta_popup_for_id.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/provider/meta_popup_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/provider/meta_popup_state.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/provider/meta_window_dragging_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/provider/meta_window_dragging_state.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/provider/meta_window_gaming_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/provider/meta_window_gaming_state.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/provider/meta_window_id_per_surface_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/provider/meta_window_id_per_surface_id.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/provider/meta_window_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/provider/meta_window_manager.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/provider/meta_window_resizing_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/provider/meta_window_resizing_state.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/provider/meta_window_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/provider/meta_window_state.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/provider/meta_window_window_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/provider/meta_window_window_map.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/provider/pid_to_meta_window_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/provider/pid_to_meta_window_id.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/widget/meta_popup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/widget/meta_popup.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/widget/meta_surface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/widget/meta_surface.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/widget/meta_surface_decoration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/widget/meta_surface_decoration.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/widget/meta_surface_gaming_overlay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/widget/meta_surface_gaming_overlay.dart -------------------------------------------------------------------------------- /src/shell/lib/meta_window/widget/meta_surface_resize_handle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/meta_window/widget/meta_surface_resize_handle.dart -------------------------------------------------------------------------------- /src/shell/lib/monitor/model/monitor.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/monitor/model/monitor.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/monitor/model/monitor_configuration.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/monitor/model/monitor_configuration.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/monitor/model/monitor_manager_state.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/monitor/model/monitor_manager_state.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/monitor/model/screen_configuration.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/monitor/model/screen_configuration.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/monitor/provider/connected_monitor_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/monitor/provider/connected_monitor_list.dart -------------------------------------------------------------------------------- /src/shell/lib/monitor/provider/monitor_by_name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/monitor/provider/monitor_by_name.dart -------------------------------------------------------------------------------- /src/shell/lib/monitor/provider/monitor_by_view_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/monitor/provider/monitor_by_view_id.dart -------------------------------------------------------------------------------- /src/shell/lib/monitor/provider/monitor_configuration_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/monitor/provider/monitor_configuration_state.dart -------------------------------------------------------------------------------- /src/shell/lib/monitor/provider/monitor_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/monitor/provider/monitor_manager.dart -------------------------------------------------------------------------------- /src/shell/lib/monitor/widget/current_screen_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/monitor/widget/current_screen_id.dart -------------------------------------------------------------------------------- /src/shell/lib/monitor/widget/monitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/monitor/widget/monitor.dart -------------------------------------------------------------------------------- /src/shell/lib/notification/model/dbus_notification.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/notification/model/dbus_notification.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/notification/model/dbus_notification_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/notification/model/dbus_notification_server.dart -------------------------------------------------------------------------------- /src/shell/lib/notification/model/notification.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/notification/model/notification.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/notification/model/notification_hints.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/notification/model/notification_hints.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/notification/model/notification_manager_state.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/notification/model/notification_manager_state.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/notification/model/org.freedesktop.Notifications.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/notification/model/org.freedesktop.Notifications.dart -------------------------------------------------------------------------------- /src/shell/lib/notification/model/org.freedesktop.Notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/notification/model/org.freedesktop.Notifications.xml -------------------------------------------------------------------------------- /src/shell/lib/notification/provider/notification_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/notification/provider/notification_channel.dart -------------------------------------------------------------------------------- /src/shell/lib/notification/provider/notification_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/notification/provider/notification_list.dart -------------------------------------------------------------------------------- /src/shell/lib/notification/provider/notification_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/notification/provider/notification_manager.dart -------------------------------------------------------------------------------- /src/shell/lib/notification/widget/notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/notification/widget/notification.dart -------------------------------------------------------------------------------- /src/shell/lib/notification/widget/notification_area.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/notification/widget/notification_area.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/audio/widget/audio_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/audio/widget/audio_control.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/bluetooth/model/bluetooth_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/bluetooth/model/bluetooth_device.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/bluetooth/model/bluetooth_manager_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/bluetooth/model/bluetooth_manager_state.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/bluetooth/provider/bluetooth_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/bluetooth/provider/bluetooth_device.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/bluetooth/provider/bluetooth_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/bluetooth/provider/bluetooth_manager.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/bluetooth/widget/bluetooth_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/bluetooth/widget/bluetooth_control.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/bluetooth/widget/bluetooth_device_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/bluetooth/widget/bluetooth_device_icon.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/bluetooth/widget/bluetooth_device_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/bluetooth/widget/bluetooth_device_list_tile.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/ethernet/model/ethernet_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/ethernet/model/ethernet_device.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/ethernet/provider/ethernet_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/ethernet/provider/ethernet_device.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/ethernet/widget/ethernet_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/ethernet/widget/ethernet_control.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/model/device_transfer_monitoring.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/model/device_transfer_monitoring.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/provider/device_transfer_monitoring.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/provider/device_transfer_monitoring.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/widget/device_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/widget/device_status.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/widget/network_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/widget/network_control.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/model/wifi_access_point.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/model/wifi_access_point.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/model/wifi_manager_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/model/wifi_manager_state.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/provider/connection_per_ssid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/provider/connection_per_ssid.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/provider/single_expanded_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/provider/single_expanded_state.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/provider/wifi_access_point_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/provider/wifi_access_point_list.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/provider/wifi_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/provider/wifi_manager.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/widget/access_point_connection_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/widget/access_point_connection_dialog.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/widget/access_point_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/widget/access_point_icon.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/widget/access_point_label.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/widget/access_point_label.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/widget/available_access_point_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/widget/available_access_point_list.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/widget/configured_access_point.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/widget/configured_access_point.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/widget/wifi_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/widget/wifi_control.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/network/wifi/widget/wifi_control_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/network/wifi/widget/wifi_control_icon.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/widget/control_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/widget/control_panel.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/control_panel/widget/session_controls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/control_panel/widget/session_controls.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/model/cpu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/model/cpu.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/model/cpu_line.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/model/cpu_line.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/model/processes_cpu_stats_snapshot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/model/processes_cpu_stats_snapshot.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/provider/cpu_chart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/provider/cpu_chart.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/provider/cpu_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/provider/cpu_stats.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/provider/processes_cpu_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/provider/processes_cpu_stats.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/widget/cpu_monitoring.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/cpu_monitoring/widget/cpu_monitoring.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/disk_monitoring/provider/disk_space.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/disk_monitoring/provider/disk_space.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/disk_monitoring/widget/disk_usage_monitoring.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/disk_monitoring/widget/disk_usage_monitoring.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/memory_monitoring/model/memory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/memory_monitoring/model/memory.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/memory_monitoring/model/memory_stats_snapshot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/memory_monitoring/model/memory_stats_snapshot.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/memory_monitoring/provider/memory_chart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/memory_monitoring/provider/memory_chart.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/memory_monitoring/provider/memory_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/memory_monitoring/provider/memory_stats.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/memory_monitoring/provider/processes_memory_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/memory_monitoring/provider/processes_memory_stats.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/memory_monitoring/widget/memory_monitoring.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/memory_monitoring/widget/memory_monitoring.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/model/process_stat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/model/process_stat.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/power_management/provider/any_upower_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/power_management/provider/any_upower_device.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/power_management/provider/upower_battery_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/power_management/provider/upower_battery_device.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/power_management/provider/upower_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/power_management/provider/upower_client.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/power_management/provider/upower_devices.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/power_management/provider/upower_devices.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/power_management/widget/battery_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/power_management/widget/battery_indicator.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/provider/process_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/provider/process_list.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/provider/process_name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/provider/process_name.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/monitoring_panel/widget/monitoring_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/monitoring_panel/widget/monitoring_panel.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/notification_panel/widget/notification_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/notification_panel/widget/notification_panel.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/provider/audio_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/provider/audio_output.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/helm/widget/helm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/helm/widget/helm.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/model/overview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/model/overview.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/provider/overview_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/provider/overview_state.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/widget/overview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/widget/overview.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/widget/overview_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/widget/overview_content.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/widget/search/application_search_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/widget/search/application_search_result.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/widget/search/file_search_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/widget/search/file_search_result.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/widget/search/search_engine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/widget/search/search_engine.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/widget/search/search_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/widget/search/search_input.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/widget/search/settings/setting_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/widget/search/settings/setting_value.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/widget/search/settings/setting_value_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/widget/search/settings/setting_value_editor.dart -------------------------------------------------------------------------------- /src/shell/lib/overview/widget/search/settings/settings_search_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/overview/widget/search/settings/settings_search_result.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/commit_surface/commit_surface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/commit_surface/commit_surface.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/destroy_subsurface/destroy_subsurface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/destroy_subsurface/destroy_subsurface.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/destroy_surface/destroy_surface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/destroy_surface/destroy_surface.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/gesture_swipe/gesture_swipe_begin.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/gesture_swipe/gesture_swipe_begin.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/gesture_swipe/gesture_swipe_end.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/gesture_swipe/gesture_swipe_end.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/gesture_swipe/gesture_swipe_update.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/gesture_swipe/gesture_swipe_update.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/interactive_move/interactive_move.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/interactive_move/interactive_move.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/interactive_resize/interactive_resize.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/interactive_resize/interactive_resize.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/meta_popup_created/meta_popup_created.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/meta_popup_created/meta_popup_created.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/meta_popup_patches/meta_popup_patches.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/meta_popup_patches/meta_popup_patches.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/meta_popup_removed/meta_popup_removed.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/meta_popup_removed/meta_popup_removed.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/meta_window_created/meta_window_created.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/meta_window_created/meta_window_created.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/meta_window_patches/meta_window_patches.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/meta_window_patches/meta_window_patches.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/meta_window_removed/meta_window_removed.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/meta_window_removed/meta_window_removed.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/monitor_layout_changed/monitor_layout_changed.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/monitor_layout_changed/monitor_layout_changed.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/new_subsurface/new_subsurface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/new_subsurface/new_subsurface.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/new_surface/new_surface.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/new_surface/new_surface.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/platform_event.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/platform_event.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/event/set_environment_variables/set_environment_variables.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/event/set_environment_variables/set_environment_variables.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/activate_window/activate_window.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/activate_window/activate_window.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/close_window/close_window.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/close_window/close_window.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/get_environment_variables/get_environment_variables.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/get_environment_variables/get_environment_variables.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/get_monitor_layout/get_monitor_layout.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/get_monitor_layout/get_monitor_layout.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/meta_popup_patches/meta_popup_patches.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/meta_popup_patches/meta_popup_patches.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/meta_window_patches/meta_window_patches.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/meta_window_patches/meta_window_patches.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/mouse_buttons_event/mouse_buttons_event.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/mouse_buttons_event/mouse_buttons_event.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/platform_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/platform_request.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/pointer_focus/pointer_focus.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/pointer_focus/pointer_focus.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/resize_window/resize_window.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/resize_window/resize_window.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/shell_ready/shell_ready.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/shell_ready/shell_ready.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/touch/touch.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/touch/touch.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/model/request/unregister_view_texture/unregister_view_texture.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/model/request/unregister_view_texture/unregister_view_texture.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/provider/environment_variables.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/provider/environment_variables.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/provider/platform_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/provider/platform_manager.dart -------------------------------------------------------------------------------- /src/shell/lib/platform/widget/swipe_gesture_detector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/platform/widget/swipe_gesture_detector.dart -------------------------------------------------------------------------------- /src/shell/lib/pointer/model/pointer_focus.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/pointer/model/pointer_focus.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/pointer/provider/pointer_focus.manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/pointer/provider/pointer_focus.manager.dart -------------------------------------------------------------------------------- /src/shell/lib/polkit/model/authentication_agent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/polkit/model/authentication_agent.dart -------------------------------------------------------------------------------- /src/shell/lib/polkit/model/org.freedesktop.PolicyKit1.AuthenticationAgent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/polkit/model/org.freedesktop.PolicyKit1.AuthenticationAgent.dart -------------------------------------------------------------------------------- /src/shell/lib/polkit/model/org.freedesktop.PolicyKit1.AuthenticationAgent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/polkit/model/org.freedesktop.PolicyKit1.AuthenticationAgent.xml -------------------------------------------------------------------------------- /src/shell/lib/polkit/model/polkit-agent-helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/polkit/model/polkit-agent-helper.dart -------------------------------------------------------------------------------- /src/shell/lib/polkit/provider/authentication_agent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/polkit/provider/authentication_agent.dart -------------------------------------------------------------------------------- /src/shell/lib/polkit/widget/polkit_authentication_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/polkit/widget/polkit_authentication_dialog.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/model/screen.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/model/screen.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/model/screen_manager_state.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/model/screen_manager_state.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/model/workspace_drag_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/model/workspace_drag_data.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/provider/available_screen_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/provider/available_screen_list.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/provider/focused_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/provider/focused_screen.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/provider/monitor_for_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/provider/monitor_for_screen.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/provider/screen_label.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/provider/screen_label.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/provider/screen_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/provider/screen_manager.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/provider/screen_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/provider/screen_state.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/provider/workspace_display_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/provider/workspace_display_mode.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/widget/current_screen_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/widget/current_screen_id.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/widget/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/widget/screen.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/widget/screen_configuration_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/widget/screen_configuration_menu.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/widget/screen_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/widget/screen_panel.dart -------------------------------------------------------------------------------- /src/shell/lib/screen/widget/workspace_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/screen/widget/workspace_list.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/model/setting_definition.dart: -------------------------------------------------------------------------------- 1 | abstract class SettingDefinition {} 2 | -------------------------------------------------------------------------------- /src/shell/lib/settings/model/setting_group.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/model/setting_group.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/model/setting_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/model/setting_property.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/model/types/monitor_setting.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/model/types/monitor_setting.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/settings_properties.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/settings_properties.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/state/hotkeys_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/state/hotkeys_setting.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/state/icon_theme_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/state/icon_theme_setting.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/state/monitor_setting_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/state/monitor_setting_state.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/state/theme_color_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/state/theme_color_setting.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/util/config_directory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/util/config_directory.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/util/configured_settings_json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/util/configured_settings_json.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/util/default_config_directory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/util/default_config_directory.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/util/default_settings_json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/util/default_settings_json.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/util/json_value_by_path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/util/json_value_by_path.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/util/merged_settings_json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/util/merged_settings_json.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/util/monitor_setting_json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/util/monitor_setting_json.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/provider/util/setting_definition_by_path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/provider/util/setting_definition_by_path.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/widget/expandable_search_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/widget/expandable_search_result.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/widget/keyboard/setting_property_hotkey_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/widget/keyboard/setting_property_hotkey_editor.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/widget/monitor/monitor_refresh_rate_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/widget/monitor/monitor_refresh_rate_editor.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/widget/monitor/monitor_refresh_rate_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/widget/monitor/monitor_refresh_rate_value.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/widget/monitor/monitor_resolution_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/widget/monitor/monitor_resolution_editor.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/widget/monitor/monitor_resolution_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/widget/monitor/monitor_resolution_value.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/widget/primitive/setting_property_bool_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/widget/primitive/setting_property_bool_editor.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/widget/primitive/setting_property_color_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/widget/primitive/setting_property_color_editor.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/widget/primitive/setting_property_double_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/widget/primitive/setting_property_double_editor.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/widget/primitive/setting_property_int_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/widget/primitive/setting_property_int_editor.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/widget/primitive/setting_property_string_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/settings/widget/primitive/setting_property_string_editor.dart -------------------------------------------------------------------------------- /src/shell/lib/settings/widget/quick_search_result.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/shell/lib/shared/bluez/provider/bluez_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/bluez/provider/bluez_client.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/bluez/provider/bluez_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/bluez/provider/bluez_device.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/bluez/provider/bluez_device_added.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/bluez/provider/bluez_device_added.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/bluez/provider/bluez_device_removed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/bluez/provider/bluez_device_removed.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/bluez/provider/bluez_devices.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/bluez/provider/bluez_devices.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/nm/provider/nm_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/nm/provider/nm_client.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/nm/provider/nm_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/nm/provider/nm_device.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/nm/provider/nm_device_added.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/nm/provider/nm_device_added.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/nm/provider/nm_device_removed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/nm/provider/nm_device_removed.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/nm/provider/nm_devices.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/nm/provider/nm_devices.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/nm/provider/nm_statistics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/nm/provider/nm_statistics.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/provider/cursor_position.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/provider/cursor_position.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/provider/dbus_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/provider/dbus_client.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/provider/mouse_button_tracker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/provider/mouse_button_tracker.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/provider/now_date_time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/provider/now_date_time.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/provider/persistent_storage_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/provider/persistent_storage_state.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/pulseaudio/provider/default_sink.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/pulseaudio/provider/default_sink.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/pulseaudio/provider/default_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/pulseaudio/provider/default_source.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/pulseaudio/provider/pulse_audio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/pulseaudio/provider/pulse_audio.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/pulseaudio/provider/pulse_server_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/pulseaudio/provider/pulse_server_info.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/pulseaudio/provider/pulse_sink_by_name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/pulseaudio/provider/pulse_sink_by_name.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/pulseaudio/provider/pulse_sink_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/pulseaudio/provider/pulse_sink_list.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/pulseaudio/provider/pulse_source_by_name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/pulseaudio/provider/pulse_source_by_name.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/pulseaudio/provider/pulse_source_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/pulseaudio/provider/pulse_source_list.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/util/file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/util/file.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/util/json_converter/color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/util/json_converter/color.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/util/json_converter/logical_key_set.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/util/json_converter/logical_key_set.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/util/json_converter/offset.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/util/json_converter/offset.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/util/json_converter/rect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/util/json_converter/rect.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/util/json_converter/resize_edge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/util/json_converter/resize_edge.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/util/json_converter/size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/util/json_converter/size.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/util/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/util/logger.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/util/raw_gesture_recognizer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/util/raw_gesture_recognizer.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/util/rect_overflow_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/util/rect_overflow_box.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/widget/blurred_background_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/widget/blurred_background_image.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/widget/clock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/widget/clock.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/widget/container_with_positionnable_children/container_with_positionnable_children.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/widget/container_with_positionnable_children/container_with_positionnable_children.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/widget/cross_reorderable_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/widget/cross_reorderable_list.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/widget/expandable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/widget/expandable.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/widget/expandable_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/widget/expandable_card.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/widget/expandable_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/widget/expandable_container.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/widget/hotkey_viewer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/widget/hotkey_viewer.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/widget/number_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/widget/number_picker.dart -------------------------------------------------------------------------------- /src/shell/lib/shared/widget/sliding_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shared/widget/sliding_container.dart -------------------------------------------------------------------------------- /src/shell/lib/shortcut_manager/model/screen_shortcuts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shortcut_manager/model/screen_shortcuts.dart -------------------------------------------------------------------------------- /src/shell/lib/shortcut_manager/model/string_to_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shortcut_manager/model/string_to_key.dart -------------------------------------------------------------------------------- /src/shell/lib/shortcut_manager/model/system_intents.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shortcut_manager/model/system_intents.dart -------------------------------------------------------------------------------- /src/shell/lib/shortcut_manager/provider/hotkeys_activator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shortcut_manager/provider/hotkeys_activator.dart -------------------------------------------------------------------------------- /src/shell/lib/shortcut_manager/widget/shortcut_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/shortcut_manager/widget/shortcut_manager.dart -------------------------------------------------------------------------------- /src/shell/lib/systemd/provider/session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/systemd/provider/session.dart -------------------------------------------------------------------------------- /src/shell/lib/theme/provider/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/theme/provider/theme.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/model/subsurface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/model/subsurface.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/model/surface_manager_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/model/surface_manager_state.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/model/wl_surface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/model/wl_surface.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/provider/subsurface_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/provider/subsurface_state.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/provider/surface.manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/provider/surface.manager.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/provider/wl_surface_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/provider/wl_surface_state.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/widget/subsurface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/widget/subsurface.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/widget/surface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/widget/surface.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/widget/surface/contain_to_input_region.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/widget/surface/contain_to_input_region.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/widget/surface/pointer_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/widget/surface/pointer_listener.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/widget/surface/surface_focus.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/widget/surface/surface_focus.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/widget/surface/view_input_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/widget/surface/view_input_listener.dart -------------------------------------------------------------------------------- /src/shell/lib/wayland/widget/surface_size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/wayland/widget/surface_size.dart -------------------------------------------------------------------------------- /src/shell/lib/window/model/dialog_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/model/dialog_window.dart -------------------------------------------------------------------------------- /src/shell/lib/window/model/ephemeral_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/model/ephemeral_window.dart -------------------------------------------------------------------------------- /src/shell/lib/window/model/matching_info.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/model/matching_info.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/window/model/persistent_window.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/model/persistent_window.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/window/model/window_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/model/window_base.dart -------------------------------------------------------------------------------- /src/shell/lib/window/model/window_id.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/model/window_id.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/window/model/window_manager_state.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/model/window_manager_state.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/window/model/window_move.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/model/window_move.dart -------------------------------------------------------------------------------- /src/shell/lib/window/model/window_properties.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/model/window_properties.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/window/model/window_resize.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/model/window_resize.dart -------------------------------------------------------------------------------- /src/shell/lib/window/model/window_stack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/model/window_stack.dart -------------------------------------------------------------------------------- /src/shell/lib/window/provider/dialog_set_for_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/provider/dialog_set_for_window.dart -------------------------------------------------------------------------------- /src/shell/lib/window/provider/dialog_window_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/provider/dialog_window_state.dart -------------------------------------------------------------------------------- /src/shell/lib/window/provider/ephemeral_window_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/provider/ephemeral_window_state.dart -------------------------------------------------------------------------------- /src/shell/lib/window/provider/persistent_window_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/provider/persistent_window_state.dart -------------------------------------------------------------------------------- /src/shell/lib/window/provider/surface_window_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/provider/surface_window_map.dart -------------------------------------------------------------------------------- /src/shell/lib/window/provider/window_manager/matching_engine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/provider/window_manager/matching_engine.dart -------------------------------------------------------------------------------- /src/shell/lib/window/provider/window_manager/matching_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/provider/window_manager/matching_utils.dart -------------------------------------------------------------------------------- /src/shell/lib/window/provider/window_manager/window_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/provider/window_manager/window_manager.dart -------------------------------------------------------------------------------- /src/shell/lib/window/provider/window_manager/windows_available_for_matching.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/provider/window_manager/windows_available_for_matching.dart -------------------------------------------------------------------------------- /src/shell/lib/window/provider/window_provider.mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/provider/window_provider.mixin.dart -------------------------------------------------------------------------------- /src/shell/lib/window/provider/window_resize.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/provider/window_resize.dart -------------------------------------------------------------------------------- /src/shell/lib/window/widget/ephemeral_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/widget/ephemeral_window.dart -------------------------------------------------------------------------------- /src/shell/lib/window/widget/floatable_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/widget/floatable_window.dart -------------------------------------------------------------------------------- /src/shell/lib/window/widget/window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/widget/window.dart -------------------------------------------------------------------------------- /src/shell/lib/window/widget/window_placeholder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/window/widget/window_placeholder.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/model/workspace.serializable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/model/workspace.serializable.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/model/workspace_shortcuts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/model/workspace_shortcuts.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/provider/window_workspace_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/provider/window_workspace_map.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/provider/workspace_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/provider/workspace_state.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/widget/current_workspace_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/widget/current_workspace_id.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/widget/tileable/persistent_application_launcher/app_drawer/app_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/widget/tileable/persistent_application_launcher/app_drawer/app_drawer.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/widget/tileable/persistent_application_launcher/app_drawer/app_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/widget/tileable/persistent_application_launcher/app_drawer/app_grid.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/widget/tileable/persistent_application_launcher/persistent_application_launcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/widget/tileable/persistent_application_launcher/persistent_application_launcher.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/widget/tileable/persistent_window/persistent_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/widget/tileable/persistent_window/persistent_window.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/widget/tileable/tileable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/widget/tileable/tileable.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/widget/tileable_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/widget/tileable_list.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/widget/workspace.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/widget/workspace.dart -------------------------------------------------------------------------------- /src/shell/lib/workspace/widget/workspace_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/lib/workspace/widget/workspace_panel.dart -------------------------------------------------------------------------------- /src/shell/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /src/shell/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/linux/CMakeLists.txt -------------------------------------------------------------------------------- /src/shell/linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/linux/README.md -------------------------------------------------------------------------------- /src/shell/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /src/shell/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /src/shell/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /src/shell/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /src/shell/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/linux/main.cc -------------------------------------------------------------------------------- /src/shell/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/linux/my_application.cc -------------------------------------------------------------------------------- /src/shell/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/linux/my_application.h -------------------------------------------------------------------------------- /src/shell/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/pubspec.lock -------------------------------------------------------------------------------- /src/shell/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-explorers/veshell/HEAD/src/shell/pubspec.yaml --------------------------------------------------------------------------------