Is it possible to use .desktop files to open local pdf files on specific pages with a browser?How Do I Export Pages from Browser with Embedded Hyperlinks?How do I get Adobe Reader to print more than one page in 13.10 Saucy?Okular opens large pdfs with blank pagesTranslate the page numbers of internal links in a pdf link to?How do I get Chromium browser to always ask where to save PDF files instead of automatically displaying it within the browser?Calling document viewer from an html viewerUsing the Adobe browser plugin to view pdf files (or alternatives) on Ubuntu 14.04How to open a link in a PDF with the error: “Unable to open external link. Failed to execute child process “sh” (Permission denied)”?Open PDF file with Krusader on Ubunti 18.04how to open PDF file at specific page in the terminal?

What plausible reason could I give for my FTL drive only working in space

How far would a landing Airbus A380 go until it stops with no brakes?

How can powerful telekinesis avoid violating Newton's 3rd Law?

Ability To Change Root User Password (Vulnerability?)

How to befriend someone who doesn't like to talk?

Are polynomials with the same roots identical?

Extracting data from Plot

That's not my X, its Y is too Z

Why did Intel abandon unified CPU cache?

Command of files and size

Why did the World Bank set the global poverty line at $1.90?

Zig-zag function - coded solution

Proving that a Russian cryptographic standard is too structured

noalign caused by multirow and colors

ASCII Meme Arrow Generator

What would be the way to say "just saying" in German? (Not the literal translation)

Tikz-cd diagram arrow passing under a node - not crossing it

Housemarks (superimposed & combined letters, heraldry)

How and why do references in academic papers work?

A Salute to Poetry

Why Does Mama Coco Look Old After Going to the Other World?

How can I write the maximally mixed state on m qubits as a linear combination of basis vectors

If there's something that implicates the president why is there then a national security issue? (John Dowd)

Could a person damage a jet airliner - from the outside - with their bare hands?



Is it possible to use .desktop files to open local pdf files on specific pages with a browser?


How Do I Export Pages from Browser with Embedded Hyperlinks?How do I get Adobe Reader to print more than one page in 13.10 Saucy?Okular opens large pdfs with blank pagesTranslate the page numbers of internal links in a pdf link to?How do I get Chromium browser to always ask where to save PDF files instead of automatically displaying it within the browser?Calling document viewer from an html viewerUsing the Adobe browser plugin to view pdf files (or alternatives) on Ubuntu 14.04How to open a link in a PDF with the error: “Unable to open external link. Failed to execute child process “sh” (Permission denied)”?Open PDF file with Krusader on Ubunti 18.04how to open PDF file at specific page in the terminal?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








8















I'd like to use desktop files to open pdf files on specific pages, I've tried creating a file with the following syntax:



[Desktop Entry]
Encoding=UTF-8
Name=mypdf.pdf
Type=Link
URL=file:///home/myhomefolder/mypdf.pdf#page=45
Icon=application-pdf


When I open this file the default browser opens my pdf file on page 1, it's like it considers #page=45 as a comment, even though if I paste the address file:///home/myhomefolder/mypdf.pdf#page=45 directly on the browser I get the expected result (the pdf opens on page 45)...



I realized that if I use this syntax for pdf files on the internet it works as expected and it opens the pdf on the page that I've predetermined, the problem is only with local files. Is it possible to use desktop files to open local pdf files on specific pages? Or is it a limitation of desktop files?










share|improve this question






























    8















    I'd like to use desktop files to open pdf files on specific pages, I've tried creating a file with the following syntax:



    [Desktop Entry]
    Encoding=UTF-8
    Name=mypdf.pdf
    Type=Link
    URL=file:///home/myhomefolder/mypdf.pdf#page=45
    Icon=application-pdf


    When I open this file the default browser opens my pdf file on page 1, it's like it considers #page=45 as a comment, even though if I paste the address file:///home/myhomefolder/mypdf.pdf#page=45 directly on the browser I get the expected result (the pdf opens on page 45)...



    I realized that if I use this syntax for pdf files on the internet it works as expected and it opens the pdf on the page that I've predetermined, the problem is only with local files. Is it possible to use desktop files to open local pdf files on specific pages? Or is it a limitation of desktop files?










    share|improve this question


























      8












      8








      8


      2






      I'd like to use desktop files to open pdf files on specific pages, I've tried creating a file with the following syntax:



      [Desktop Entry]
      Encoding=UTF-8
      Name=mypdf.pdf
      Type=Link
      URL=file:///home/myhomefolder/mypdf.pdf#page=45
      Icon=application-pdf


      When I open this file the default browser opens my pdf file on page 1, it's like it considers #page=45 as a comment, even though if I paste the address file:///home/myhomefolder/mypdf.pdf#page=45 directly on the browser I get the expected result (the pdf opens on page 45)...



      I realized that if I use this syntax for pdf files on the internet it works as expected and it opens the pdf on the page that I've predetermined, the problem is only with local files. Is it possible to use desktop files to open local pdf files on specific pages? Or is it a limitation of desktop files?










      share|improve this question
















      I'd like to use desktop files to open pdf files on specific pages, I've tried creating a file with the following syntax:



      [Desktop Entry]
      Encoding=UTF-8
      Name=mypdf.pdf
      Type=Link
      URL=file:///home/myhomefolder/mypdf.pdf#page=45
      Icon=application-pdf


      When I open this file the default browser opens my pdf file on page 1, it's like it considers #page=45 as a comment, even though if I paste the address file:///home/myhomefolder/mypdf.pdf#page=45 directly on the browser I get the expected result (the pdf opens on page 45)...



      I realized that if I use this syntax for pdf files on the internet it works as expected and it opens the pdf on the page that I've predetermined, the problem is only with local files. Is it possible to use desktop files to open local pdf files on specific pages? Or is it a limitation of desktop files?







      pdf .desktop






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 24 at 17:58







      Rafael Muynarsk

















      asked Mar 24 at 17:50









      Rafael MuynarskRafael Muynarsk

      646621




      646621




















          2 Answers
          2






          active

          oldest

          votes


















          10














          Use url?



          I need to look it up, but I seem to remember Type Link is deprecated in a .desktop file. Anyway, it won't work here as you found out. Encoding is deprecated for sure, but that isn't the issue. Furthermore, xdg-open won't work; it will open your default application for pdf files.



          Then what to use?



          Create a .desktop file, calling your preferred browser with the pdf file + page as argument. In your example:



          [Desktop Entry]
          Type=Application
          Name=Open pdf on page 45
          Exec=firefox 'file:///home/myhomefolder/mypdf.pdf#page=45'
          Icon=application-pdf


          enter image description here



          Then make it executable and double-click. If you are using another browser, you need to change the Exec= -line to reflect that.






          share|improve this answer
































            6














            Some document viewers allow you to start them with an argument pointing to the desired page.



            From evince --help:



             -i, --page-index=NUMBER The page number of the document to display.


            Therefore, your .desktop file could look like this:



            [Desktop Entry]
            Name=mypdf.pdf page 45
            Type=Link
            Exec=evince --page-index=45 /home/myhomefolder/mypdf.pdf
            Icon=application-pdf





            share|improve this answer























              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "89"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1128328%2fis-it-possible-to-use-desktop-files-to-open-local-pdf-files-on-specific-pages-w%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              10














              Use url?



              I need to look it up, but I seem to remember Type Link is deprecated in a .desktop file. Anyway, it won't work here as you found out. Encoding is deprecated for sure, but that isn't the issue. Furthermore, xdg-open won't work; it will open your default application for pdf files.



              Then what to use?



              Create a .desktop file, calling your preferred browser with the pdf file + page as argument. In your example:



              [Desktop Entry]
              Type=Application
              Name=Open pdf on page 45
              Exec=firefox 'file:///home/myhomefolder/mypdf.pdf#page=45'
              Icon=application-pdf


              enter image description here



              Then make it executable and double-click. If you are using another browser, you need to change the Exec= -line to reflect that.






              share|improve this answer





























                10














                Use url?



                I need to look it up, but I seem to remember Type Link is deprecated in a .desktop file. Anyway, it won't work here as you found out. Encoding is deprecated for sure, but that isn't the issue. Furthermore, xdg-open won't work; it will open your default application for pdf files.



                Then what to use?



                Create a .desktop file, calling your preferred browser with the pdf file + page as argument. In your example:



                [Desktop Entry]
                Type=Application
                Name=Open pdf on page 45
                Exec=firefox 'file:///home/myhomefolder/mypdf.pdf#page=45'
                Icon=application-pdf


                enter image description here



                Then make it executable and double-click. If you are using another browser, you need to change the Exec= -line to reflect that.






                share|improve this answer



























                  10












                  10








                  10







                  Use url?



                  I need to look it up, but I seem to remember Type Link is deprecated in a .desktop file. Anyway, it won't work here as you found out. Encoding is deprecated for sure, but that isn't the issue. Furthermore, xdg-open won't work; it will open your default application for pdf files.



                  Then what to use?



                  Create a .desktop file, calling your preferred browser with the pdf file + page as argument. In your example:



                  [Desktop Entry]
                  Type=Application
                  Name=Open pdf on page 45
                  Exec=firefox 'file:///home/myhomefolder/mypdf.pdf#page=45'
                  Icon=application-pdf


                  enter image description here



                  Then make it executable and double-click. If you are using another browser, you need to change the Exec= -line to reflect that.






                  share|improve this answer















                  Use url?



                  I need to look it up, but I seem to remember Type Link is deprecated in a .desktop file. Anyway, it won't work here as you found out. Encoding is deprecated for sure, but that isn't the issue. Furthermore, xdg-open won't work; it will open your default application for pdf files.



                  Then what to use?



                  Create a .desktop file, calling your preferred browser with the pdf file + page as argument. In your example:



                  [Desktop Entry]
                  Type=Application
                  Name=Open pdf on page 45
                  Exec=firefox 'file:///home/myhomefolder/mypdf.pdf#page=45'
                  Icon=application-pdf


                  enter image description here



                  Then make it executable and double-click. If you are using another browser, you need to change the Exec= -line to reflect that.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Mar 24 at 19:04

























                  answered Mar 24 at 18:43









                  Jacob VlijmJacob Vlijm

                  67.5k9138240




                  67.5k9138240























                      6














                      Some document viewers allow you to start them with an argument pointing to the desired page.



                      From evince --help:



                       -i, --page-index=NUMBER The page number of the document to display.


                      Therefore, your .desktop file could look like this:



                      [Desktop Entry]
                      Name=mypdf.pdf page 45
                      Type=Link
                      Exec=evince --page-index=45 /home/myhomefolder/mypdf.pdf
                      Icon=application-pdf





                      share|improve this answer



























                        6














                        Some document viewers allow you to start them with an argument pointing to the desired page.



                        From evince --help:



                         -i, --page-index=NUMBER The page number of the document to display.


                        Therefore, your .desktop file could look like this:



                        [Desktop Entry]
                        Name=mypdf.pdf page 45
                        Type=Link
                        Exec=evince --page-index=45 /home/myhomefolder/mypdf.pdf
                        Icon=application-pdf





                        share|improve this answer

























                          6












                          6








                          6







                          Some document viewers allow you to start them with an argument pointing to the desired page.



                          From evince --help:



                           -i, --page-index=NUMBER The page number of the document to display.


                          Therefore, your .desktop file could look like this:



                          [Desktop Entry]
                          Name=mypdf.pdf page 45
                          Type=Link
                          Exec=evince --page-index=45 /home/myhomefolder/mypdf.pdf
                          Icon=application-pdf





                          share|improve this answer













                          Some document viewers allow you to start them with an argument pointing to the desired page.



                          From evince --help:



                           -i, --page-index=NUMBER The page number of the document to display.


                          Therefore, your .desktop file could look like this:



                          [Desktop Entry]
                          Name=mypdf.pdf page 45
                          Type=Link
                          Exec=evince --page-index=45 /home/myhomefolder/mypdf.pdf
                          Icon=application-pdf






                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Mar 24 at 22:50









                          Nonny MooseNonny Moose

                          1,057722




                          1,057722



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Ask Ubuntu!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1128328%2fis-it-possible-to-use-desktop-files-to-open-local-pdf-files-on-specific-pages-w%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                              Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                              Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript