[SOLVED]epiphany, default applications

Hi,
after installing gimp epiphany used it as the default application for opening pdf files...very annoying,
i worked around that with this hack:
cp ~/.mozilla/firefox/3la1zdhr.default/mimeTypes.rdf ~/.gnome2/epiphany/mozilla/epiphany/
looks like gnome is in the process of ripping out the firefox backend....so this will probably be solved in the future.
but for now i would like to tell epiphany to download .nzb files to some specific dir or open it with a shell script - how do i do that?
Last edited by metalfan (2009-02-16 23:01:53)

I have the same problem. From what I can see, it's because gimp is listed before evince in /usr/share/applications/mimeinfo.cache:
grep pdf /usr/share/applications/mimeinfo.cache
This file is generated with the update-desktop-database command. So I came up with two non-permanent solutions.
1.  Put evince before gimp in /usr/share/applications/mimeinfo.cache and repeat each time the update-desktop-database command is run, like when you update an application.
OR
2. Remove the pdf entry from MimeType line in /usr/share/applications/gimp.desktop and run update-desktop-database as root. You've got to repeat this fix whenever you update gimp.
I hope that helps.

Similar Messages

  • [Solved] Default Applications

    I'm using gnome 3.6.1 and when i try to change default applications from system settings>details>default applications  control center exits without any change! Problem was there since gnome 3.4 but then it just didn't change anything now it exits control center window.
    I'm on x64 and pure systemd system
    Last edited by s0lid7 (2012-11-10 12:42:22)

    I tried to change by opening nautilus as root, right click on file, click on properties, open with tab but when i changed it nautilus closed...
    Here is the terminal output with an error when opening nautilus and the next when i changed default app
    Unable to initialize DBus connection: The connection is closedcannot connect to the session bus: The connection is closed (g-io-error-quark, 18)
    ERROR:nautilus-properties-window.c:1836:schedule_owner_change_timeout: assertion failed: (NAUTILUS_IS_FILE (file))
    Aborted

  • [SOLVED] Unable to set default application to open files

    Hello,
    Whenever I try to set a default application for a file type (an avi for example) by right-clicking the file in Nautilus and choosing Open with Other Application, I can select the application (in this case VLC), check the Remember this Application checkbox  and click Open, I always get the below message:
    Could not set application as the default: Can't create user application configuration folder /root/.local/share/applications: Permission denied
    I'm not logged in as root (confirmed with "whoami") so I'm not sure why it's trying to access the root home folder.
    I'm thinking this is simply a misconfigured path statement (forgive the Windows terminology) but I'm not sure where to start looking.  Any help would be most appreciated.
    Thanks!
    Beta
    Last edited by betawind (2010-07-09 00:10:58)

    Thanks for the reply ngoonee! 
    The situation has already changed a bit.  Still being in Windows mode, I decided to try a reboot.  After rebooting I no longer get the error I was before (I wonder if it had something to do with logging in initially as root then su'ing to my user account) but the association with vlc just isn't sticking.
    I noticed though that now when I right-click on a video file I get the option to "Open with Movie Player" as well as "Open with VLC media player" (which does do what it's supposed to), which wasn't there before.  For grins I went and set the preferred multimedia app to VLC through System > Preferences > Preferred Applications, but that didn't help.
    Is there a place these preferences are stored that I might take a peek at?
    Last edited by betawind (2010-07-09 00:04:56)

  • Gnome Default Application for Blank DVD [SOLVED]

    Hello - I'm using Gnome 3.14. When I insert a blank DVD in my DVD drive it asks me whether I want to open it with Anjuta or eject it. Anjuta is a C++ development package so that's no good. How do I change the default application to something like Brasero when I insert a blank DVD? Many thanks in advance.
    Last edited by systemshq (2014-11-11 14:00:23)

    you should be able to change that from gnome-control-center -> Details -> Removable media -> Other media...

  • [SOLVED] pcmanfm lost default applications settings for office docs

    I'm not sure if it was the Libreoffice recent update or not, but I no longer have any application settings for office documents (ppt, doc, xls, ods, odp, odt, etc.). When I right click to choose an application, none are listed. I tried the suggestion from the wiki to install gnome-menus but the situation was no better after a logout/login.
    Even inputting a custom command like:
    /usr/bin/soffice --impress %f
    does not work. It seems that the "Open with" dialog is completely function-less.
    Any suggestions/experience with this?
    Last edited by jwhendy (2011-08-09 22:50:41)

    I fixed this. I just had to figure out the correct mimetypes and re-add them. I still believe this used to be down automatically, but not a big deal. Part of my problem was trying to use xdg-mime to set defaults for "application/ppt" when it's really "application/powerpoint."
    I found this list of mimetypes that was really helpful for setting defaults for .doc, .xls, and .ppt.
    There are also listings for the correct mimetypes for .odt, .ods, and .odp. In the end, my ~/.local/share/applications/defaults.list looks like this:
    [Default Applications]
    application/pdf=evince.desktop
    txt/application=emacs.desktop
    tex/application=emacs.desktop
    application/powerpoint=libreoffice-impress.desktop
    application/msword=libreoffice-writer.desktop
    application/excel=libreoffice-calc.desktop
    application/vnd.oasis.opendocument.presentation=libreoffice-impress.desktop
    application/vnd.oasis.opendocument.spreadsheet=libreoffice-calc.desktop
    application/vnd.oasis.opendocument.text=libreoffice-writer.desktop

  • How to change default application associated with some mime types?

    When we install some new program, for example GIMP, I assume the newly installed program is added to some mime type database, and the /usr/share/applications/mimeinfo.cache file is automatically generated.
    Using my example, GIMP will be the default application for all its registered mime types, even application/pdf. I surely don't want this to happen, and I surely don't want to create all kinds of files that GIMP registered and right click on them and choose Properties and then change it in the Open with... tab. I want to systematically de-prioritize GIMP so that it will not override my previously assigned default applications.
    I wrote a script to modify the mimeinfo.cache file, and it seems to work great. However, after a reboot or upgrade or something I didn't notice, the default application of application/pdf is reconfigured to GIMP. I think the cache suffix of the file indicates that it is just a cache and may be changed by system unnoticed. So I am looking for a new way to change the default applications.
    As far as I know or guess from the phenomena, there should be some system utility that generates the mimeinfo.cache file, it seems to parse all the *.desktop files under /usr/share/applications and register them to certain mime types accordingly. The sequence of the *.desktop files get parsed seems to be related to the time the application is installed, and the newly installed applications seems to be parsed later and inserted in the front of the application list or be parsed earlier and appended to the application list. Is there some place I can change the sequence of the parsing? Or is there some place I can change the behavior of the system utility?
    I know that I can populate my ~/.local/share/applications/mimeapps.list to override the system wide defaults, however, I want a more elegant way to this.
    Any opinion on this is welcomed.
    Last edited by AugustePop (2010-05-14 05:47:15)

    Ah, right. Don't know what DE you are on, but in Gnome:  right-click a (e.g. pdf) file -> Preferences -> Open with.
    All Applications listed there will be available from the right click menu, the marked one will be used on double-click.
    errgrh...
    I surely don't want to create all kinds of files that GIMP registered and right click on them and choose Properties and then change it in the Open with... tab. I want to systematically de-prioritize GIMP so that it will not override my previously assigned default applications.
    I guess what I am trying to propose is this: "de-prioritize" GIMP in its .dekstop file for the types you dont want it to be associated with, and manually add it back in through "Open With" for the file types you want it to be an option. Not sure if this is solving anything for you though
    Last edited by hokasch (2010-05-14 10:28:57)

  • How to set my default application...not working

    My company has nearly all adobe applications installed from PageMaker 6.5 through InDesign 5.5. We use them all frequently. I'm trying to set my defaults on the Mac Pros and it is not working.
    Specs if Needed:
    OSX 10.6.8 
    Model Identifier:          MacPro5,1
      Processor Name:          Quad-Core Intel Xeon
      Processor Speed:          2.8 GHz
      Number Of Processors:          1
      Total Number Of Cores:          4
      Memory:          6 GB
      Boot ROM Version:          MP51.007F.B01
    +BootCamp dual boot Windows 7
    We proof out all files in the version that it comes to us. Our customers are on different versions than the most current, and it's driving us crazy that we can't set the defaults for
    each Adobe application. For Instance,
    We want for Defaults:
    Photoshop = CS4
    InDesign = CS4
    Illustrator = CS5
    etc.
    The Finder will not allow us to make the change to open all of a certain file type in the version we want by default. We also use a third party application that allows us to "double
    click" InDesign files and open them in the correct version. This saves valuable navigation time and because of the OS's problem with using the correct icons, it also saves us time
    dealing with the "Untitled" document when we accidentally convert by opening in the wrong application by mistake. We have gone through Onyx utilities and massive permissions
    troubleshooting to no avail. Does anyone know how to set the default for ALL files of a type for Adobe Apps? This has been thoroughly tested and is not working on 10 plus
    machines, and only effects Adobe apps.
    Any Ideas?

    I think you miss understand the question. There is a problem with OSX 10.6 and Adobe Apps. 10.5 ok, not sure about 10.7 because of all of the other Adobe problems we downgraded the test machine that we used for the upgrade. There is no way that I have found to make the files “Double-Clickable” through assigning a default application of files with Adobe extensions. We already have an app. that we use and it worked fine until 10.6. I can’t just approve a division-wide purchase of software for a bug that may be solvable by other means (by the way supposed cost of the licensing Soxy is deceiving at $20. Not for us. For companies it’s $20 per platform & also for each time Adobe updates. When we swap out hardware, we have to pay $40 again . Their pricing is absurd). $40 x a couple hundred machines every 18 months or so, uugh! The ten or so I’m working with are just the ones in my immediate department.
    I know you have good intentions with your reply and I appreciate it, however I’m looking to solve the problem, not put a band-aid on it. If the problem is by design so Rorohiko can hold companies hostage, then I guess we’ll just have to deal with the few extra clicks it takes to figure out which version we’re in need of, and dragging to the launch bar.
    Thanks very much for your reply,
    Seth

  • Default application will not change

    I’ve seen several posts on this topic but no working solutions yet. I have a Mac with several user accounts, some admins, some not. There are 2 versions of QuarkXPress 6.5 installed, the normal version and the Passport Edition. Under some accounts, double-clicking a file will launch the normal QuarkXPress, under others it will launch Passport by default. When I get info on a Quark document and change the default application to the other version and click “Change All…” it just reverts back to whatever the previous default app was. It doesn’t matter if the user is an admin or not, it won’t change. I even tried installing the free preference pane from Rubicode (http://www.rubicode.com/Software/RCDefaultApp/). That didn’t work, either. Any suggestions would be greatly appreciated.
    all G4 & G5 models   Mac OS X (10.4.6)  

    Thanks Kevin. I've run MacJanitor, verified disk permissions, and restructured the volume with Disk Warrior, which although it didn't solve this problem it didn't hurt :] I'm good about maintenance since I'm always working on large files and PShop is a memory hog.
    I never had the problem with Panther and 2 (or more) versions of Adobe, but the same thing happens on my husband's G5 so it may be a Tiger/Adobe bug.
    It's not just an Adobe thing though -- the same problem occurs with Dreamweaver MX 2004 and the new Dreamweaver 8 files. I can't say about MS Word, since I refuse to use the 2004 version (I don't useWord Office X either except to open files clients send me).
    I did discover that if you click on the 'cancel' button, rather than the 'continue' button when the "do you really want to change the open application" options pop up then the file will open with the correct version selected - although it won't change all the same type of files system-wide.
    I'll check into Cocktail - but I think your advice about just dropping the files onto the older version icon on the dock will probably be the way I'll go. I really don't want to reinstall Tiger - it's a pain to update all the versions to 4.4 --
    Thanks again -- Susan
    G4 Power PC Quicksilver Dual 2 gig   Mac OS X (10.4.4)  
    G4 Power PC   Mac OS X (10.4.4)  

  • Resetting Default Applications

    Just got a new Quad. While I was setting up Tiger, I mistakenly told OSX to use Microsoft Word as the default application to handle .sit files. Of course, I meant to use Stuffit Expander. Does anyone know how to change this?

    I just found the answer to my own question. If anyone else is having similar issues, go here (http://www.rubicode.com/Software/RCDefaultApp/), download this (RCDefaultApp), and all your problems will be solved.

  • Making Photoshop default application to open RAW images

    Situation:
    I had to reload Photoshop to resolve some problems.
    Problem:
    Now, when I highlight a RAW file and then right click to open it, Photoshop does not appear after I click <Open with>. Other options appear, but Photoshop does not.
    Although:
    I can click <Other>, and with a few more clicks, open in Photoshop. Also, when I click <Get info> for a RAW file and the info window opens, I am able to change the opening application for that particular file to Photoshop.
    The bigger problem:
    While in the Info window, I have attempted to change "Open With" to Photoshop as default for all files ending with the RAW extension, but it does not take. "Not applicable" appears in the application window after I click <Continue>, which is the final step in making a specific application the default application to open the file type in question. "Read and Write" permissions are in place.
    What I'd like to do:
    Make Photoshop appear as the Default Application to open RAW files when I right click on the RAW file.
    Please help.
    Thank you.
    Les
    iMac   Mac OS X (10.3.9)  

    Quoted: Also, when I click <Get info> for a RAW file and the info window opens, I am able to change the opening application for that particular file to Photoshop.
    When you have selected Photoshop there, then you have to press the button "Change All...". Now every RAW file will be opened in Photoshop.
    If Photoshop has not been listed there you can go with the "Other..." option in the drop down menu and select Photoshop from the application folder.
    Quoted: Make Photoshop appear as the Default Application to open RAW files when I right click on the RAW file.
    You know you can also open file's just by clicking twice with the normal left mouse key? If you have set Photoshop as Default (like described above) then it will also open in Photoshop.
    Hopefully this is helpfull or solved your problem. (see button's above this message)

  • How can i specify the default application to save a read later doc in Instapaper

    I have an Instapaper account, so that I can mark some online web pages to 'read later' if I wish to do this. I have successfully put the Instapaper 'Read Later' borkmarklet on the dock of my iMAC.
       However, whenever, I come across a web page or blog that I wish to read later, and click the 'Read Later' bookmarklet on my dock, it throws up an error message that reads ' There is no default application specified to open the URL' and so I am now at a dead end.
    Can someone explain to me where and how I can find the default application to get round this problem. By the way, I did not find this problem with Instapaper's 'read later' bookmarklet on my old Windows PC, where I was able to store pages for reading later with this app, and also to transfer them automatically to my kindle through the wifi connection at home.
    I hope someone can assist... Or is there another way - (apart from Instapaper which worked okay with Windows)- to save web pages for reading later with MAC -
    Thanks

    This is pretty simple in Safari, in the upper left of Safari you will see an icon that looks like pair of glasses, this is where you collect webpages for you to read later. The feature is called Reading List and looks like:

  • How to change default application in file context menu

    I know you can change the application that opens a file in the file;s info window (command i) and then double clicking the file opens it in that application. However the context menu still shows the same original default application. How to change what is shown as default in context menu?

    You can't. You can change the default app in Get Info which will change the first listed app in the context menu to that default app. How the context menu is built is not under user control.

  • How do I change the default application to open files.

    I am rather new to Mac OS (using Leopard). I am rather frustrated, that I have not been able to find a way to change the default application that opens PDF files. I looked around the System Prefernces, couldn't find it, searched the Web, nothing. And I could not find an answer in this forum either.
    So here is my question. How do I change the default application for opening PDF files from Preview to Adobe Reader? I do not want to have to click "open with" every time, I want to open a PDF file.
    And how do I do this for other files also? For instance, I may want to open images files with Photoshop instead of Preview.

    Hey ! I was going mad with the same question - and I'm not a complete newbie - so thanks to William for answering it - I knew I'd seen that dialog somewhere, but just couldn't find it. Text edit was driving me crazy telling me that .ppt files were screwed, now I've got em to open with Powerpoint...
    In answer to your last question, Craig, the dialog that appears to ask if you're sure specifically says the change will relate to all .pdf files ( or .ppt or .whatever ), so it won't stop Preview from opening other types of files.
    Thanks for the help - searched Apple support in vain on this one...

  • Set default application for *all* users

    Hello people, my 1st post here, so forgive me for possible imprecisions, ambiguity, inappropriateness....
    When I search how to set/change the default app for opening some type of file I always find the answer "through the getinfo". But doing that, I only change the default application for the current user.
    I want to do that for all users of my mac, without repeating the getinfo process for each of them.
    Is there any adminstrative tools for doing that?
    Thank you.

    You could download and install RCDefaultApp 2.1 for all users: check the Read Me and then test it on something to see if it accomplishes what you want.
    http://www.rubicode.com/Software/RCDefaultApp/

  • Open file in default application with unsigned webstart

    Hi,
    Is it possible to open a document in the user's default registered application (on the OS) from an unsigned Java webstart application?
    I don't mind if the user gets a warning, but the only thing I found was the ability to save a file (also with a user warning), but I'd like to automatically open the document generated by the webstart application in the default application on the OS registered for the file association. In this case either a *.xlsx (Excel/OpenOffice) or *.xml file
    Any ideas?

    You can use BasicService.showDocument() to do this, however you will get a blank windows opened in the default browser.

Maybe you are looking for

  • Itunes 11.1 crashes when started in 32 bit mode

    I'm running itunes 11.1 (126) on a new macbook air. it's running fine in default 64-bit mode but when I try to start it in 32-bit (because of some podcasts that require quicktime) itunes immediately crashes after starting. has anyone experienced the

  • Net value posting of 2 line items to 2 g/l accounts

    Dear Gurus, I have a requirement where I have a sales order with 2 different line items and I need to post the net values for which of those line items to different GL accounts. how can i do this Wishes, Abhishek

  • How to use authid with rwservlet via WebLogic Thin Client

    1. Using J2EE Thin Client for WebLogic (WL) to submit interactive requests for Oracle Reports (App Server 10g) running on another server without SSO. 2. After starting basic Infrastructure, we start rwserver in batch mode (no other mid-tier component

  • Printing Report in same order as Paycheck Run (Important)

    Hi, For one of my current project's, the requirement is to the print a Salesman Incentive Paycheck Report in the same order as the paycheck run. The report is needed in order to show the sales personnel which incentives they were paid on their payche

  • Load JDBC driver class 'null'

    hi all :) i'm using a datasource (tomcat 4.1.18 with jdk 1.4) i'm the following error : java.sql.SQLException: Cannot load JDBC driver class 'null'my classes12.jar find in $CATALINA_HOME/common/lib where is ma error ? thanks a lot.