Skip to content

Commit

Permalink
Enable wayland support
Browse files Browse the repository at this point in the history
  • Loading branch information
yetist authored and rbuj committed Jun 20, 2020
1 parent 9d39191 commit 3b960c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/terminal-screen.c
Original file line number Diff line number Diff line change
Expand Up @@ -1445,7 +1445,9 @@ get_child_environment (TerminalScreen *screen,
g_hash_table_replace (env_table, g_strdup ("TERM"), g_strdup ("xterm-256color")); /* FIXME configurable later? */

/* FIXME: moving the tab between windows, or the window between displays will make the next two invalid... */
g_hash_table_replace (env_table, g_strdup ("WINDOWID"), g_strdup_printf ("%ld", GDK_WINDOW_XID (gtk_widget_get_window (window))));
if (GDK_IS_X11_DISPLAY (display)) {
g_hash_table_replace (env_table, g_strdup ("WINDOWID"), g_strdup_printf ("%ld", GDK_WINDOW_XID (gtk_widget_get_window (window))));
}
g_hash_table_replace (env_table, g_strdup ("DISPLAY"), g_strdup (gdk_display_get_name (display)));

g_settings_schema_source_list_schemas (g_settings_schema_source_get_default (), TRUE, &list_schemas, NULL);
Expand Down
3 changes: 0 additions & 3 deletions src/terminal.c
Original file line number Diff line number Diff line change
Expand Up @@ -483,8 +483,6 @@ main (int argc, char **argv)

working_directory = g_get_current_dir ();

gdk_set_allowed_backends ("x11");

/* Now change directory to $HOME so we don't prevent unmounting, e.g. if the
* factory is started by caja-open-terminal. See bug #565328.
* On failure back to /.
Expand All @@ -507,7 +505,6 @@ main (int argc, char **argv)
egg_sm_client_get_option_group (),
#endif /* HAVE_SMCLIENT */
NULL);

g_free (working_directory);

if (options == NULL)
Expand Down

0 comments on commit 3b960c5

Please sign in to comment.