Hello,

I modified Nautilus to make it so that the Home button will take the user to
a custom directory if the environment variable "NAUTILUS_HOME" is set with
the following code:
File: nautilus-window-manage-views.c, Line 682

if !(g_getenv ("NAUTILUS_HOME"))
{
    home = g_file_new_for_path (g_get_home_dir ());
} else {
    home = g_file_new_for_path (g_getenv ("NAUTILUS_HOME"));
}

How would I go about trying to get the feature implemented in Nautilus since
I have already created a patch?
-- 
nautilus-list mailing list
nautilus-list@gnome.org
http://mail.gnome.org/mailman/listinfo/nautilus-list

Reply via email to