summaryrefslogtreecommitdiff
path: root/shell/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/main.c')
-rw-r--r--shell/main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/main.c b/shell/main.c
index 5e3b6774..7f00c6f9 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -76,9 +76,9 @@ static const GOptionEntry goption_options[] =
{
{ "page-label", 'p', 0, G_OPTION_ARG_STRING, &ev_page_label, N_("The page label of the document to display."), N_("PAGE")},
{ "page-index", 'i', 0, G_OPTION_ARG_INT, &ev_page_index, N_("The page number of the document to display."), N_("NUMBER")},
- { "fullscreen", 'f', 0, G_OPTION_ARG_NONE, &fullscreen_mode, N_("Run evince in fullscreen mode"), NULL },
- { "presentation", 's', 0, G_OPTION_ARG_NONE, &presentation_mode, N_("Run evince in presentation mode"), NULL },
- { "preview", 'w', 0, G_OPTION_ARG_NONE, &preview_mode, N_("Run evince as a previewer"), NULL },
+ { "fullscreen", 'f', 0, G_OPTION_ARG_NONE, &fullscreen_mode, N_("Run atril in fullscreen mode"), NULL },
+ { "presentation", 's', 0, G_OPTION_ARG_NONE, &presentation_mode, N_("Run atril in presentation mode"), NULL },
+ { "preview", 'w', 0, G_OPTION_ARG_NONE, &preview_mode, N_("Run atril as a previewer"), NULL },
{ "find", 'l', 0, G_OPTION_ARG_STRING, &ev_find_string, N_("The word or phrase to find in the document"), N_("STRING")},
{ "unlink-tempfile", 'u', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &unlink_temp_file, NULL, NULL },
{ "print-settings", 't', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_FILENAME, &print_settings, NULL, NULL },
@@ -101,7 +101,7 @@ launch_previewer (void)
* not supported by the previewer and taking only
* the first path given
*/
- cmd_str = g_string_new ("evince-previewer");
+ cmd_str = g_string_new ("atril-previewer");
if (print_settings) {
gchar *quoted;
@@ -304,11 +304,11 @@ main (int argc, char *argv[])
ev_stock_icons_init ();
#if defined(WITH_SMCLIENT) && defined(GDK_WINDOWING_X11)
- egg_set_desktop_file (MATEDATADIR "/applications/evince.desktop");
+ egg_set_desktop_file (MATEDATADIR "/applications/atril.desktop");
#else
/* Manually set name and icon */
g_set_application_name (_("Document Viewer"));
- gtk_window_set_default_icon_name ("evince");
+ gtk_window_set_default_icon_name ("atril");
#endif /* WITH_SMCLIENT && GDK_WINDOWING_X11 */
ev_application_load_session (EV_APP);