Xfce preferred applications

Hi All,
When I'm in the Thunderbird email program, clicking on a link does not open firefox. These programs are both selected in the preferred applications section of xfce settings. Does anyone here know of any tricks that I might be missing?
Thanks,
Arthur

Yes, Thunderbird ignores any preferred apps you might have set in Xfce (or Gnome and KDE, for that matter). You need to go to Edit --> Preferences --> Advanced --> Config Editor (it's the same thing as Firefox's "about:config"), and add a string key "network.protocol-handler.app.http". Setting it to "xdg-open" should make it behave and use your preferred app, but if that doesn't work you can just set it to "/usr/bin/firefox" or whatever.
You can set a similar key, "network.protocol-handler.app.mailto" in Firefox to "xdg-email" to use your preferred app for mailto: URLs.

Similar Messages

  • XFCE preferred applications settings

    Where are these stored ? I remember having a ~/.config/xfce or something like that folder but I can't find it now. Must have deleted it. So, how can I change the default terminal command in XFCE ? (need it for easily open a terminal while in thunar)

    Not quite sure what your question is exactly.. but /etc/xdg/xfce4/helpers.rc might be what you're wanting.
    If you mean you want the "Open Terminal Here" option in thunar to open a different terminal, you can also go to "Edit" -> "Configure custom actions..." and change the "Open Terminal Here" command to "urxvt %d" or something.
    Last edited by curve (2008-09-13 22:22:38)

  • [Solved]Can't change preferred applications in Gnome

    I can't change the preferred applications in gnome. At the 'open with' tab in a files properties, I can't choose another application as below .
    If I try opening it with another app it via the right click menu and choosing 'Open with Other Apllication' then I get a 'Could not add application to the application database' error.
    I assume it's some sort of premissions problem... :?

    hmm, for some reason the ~/.local directory had changed to root ownership.
    oh well, all's well that ends well

  • How do I change the preferred application to open documents from Libra office to Microsoft office?

    How do I change the preferred application to open documents from Libra office to Microsoft office?

    Select a document of that type in the Finder, choose Get Info from the File menu, click on Open With, select the desired application, and press the Change All button.
    (116411)

  • [Solved] Change preferred applications in gnome-shell

    I already do know that you can change the preferred application for a particular file type by right-clicking and then "open with other application" and choosing the default application. However I use .tex files extensively and installed Texworks (V0.4) to handle it. However when I click on .tex file in nautilus it always opens with gedit. I clicked on "open with other application", however that list did not show Texworks.
    On searching through arch wiki and google, I found some posts saying if you can add the file type association in the file ~.local/share/applications/mimeapps.list. However I do not know the syntax for .tex file type.
    Is there a way to add Texworks to "open with other application list?  Or is there any other command line way?
    Last edited by krnekhelesh (2011-05-14 15:55:13)

    Your program should show up if you add a *.desktop file (e. g. to /usr/share/applications or ~.local/share/applications/). The important piece is the exec line, which has to look like this:
    Exec=yourprogram %U
    (further reading)
    Last edited by Wey (2011-05-14 13:39:20)

  • [SOLVED] XFCE - Editing Applications Menu

    Hi there,
    The applications menu seems to update happily in XFCE when i use pacman.. however pacman has placed some items (eg. XMMS) into an incorrect category (in this case "Other").
    How can I edit the menu so that XMMS is placed into the "Multimedia" group? When I use the menu editor in XFCE, it allows me to add or remove items from the menu, EXCEPT it has an "include" entry that seems to include another menu called "system"...?
    Where can i find this "system" menu??
    Many thanks,
    KC
    Last edited by killercow (2008-09-03 18:12:34)

    tesjo wrote:It uses *.desktop entries of either /usr/share/applications/ or ~/.local/share applications/ just edit these file with a text editor, look at a few and you'll see how to get the group, title or icon you want in the menu.
    Ah ha!
    I had found the list of applications in /usr/share/applications and was trying to edit the entry for xmms, but whatever I did it didn't work, so I thought I was being silly and asked if there was a menu config file i had to use...
    Turns out that there was an entry in the ~/.local/share/applications that was overwriting my changes to the /usr/share... settings! How frustrating, glad to have got it sorted lol.
    Thanks for your quick advice!
    [SOLVED!]
    Last edited by killercow (2008-09-03 18:13:16)

  • XFCE and applications icons

    Hi. Im using XFCE 4 and i install the Sublime 2 like here (the second method) but when im running it, in the application bar it doesn't shows the icon of sublime. Also when im going to "Open file" or some else menu , it doesn't shows known icons of files/buttons. E.g In this dialog window (open file) the Cancel and Open buttons have an icon with a red X on them. It seems that this application cannot find the systems icons and it's own.
    First time i have a problem like this. With the previous version of sublime all worked perfect.
    Any idea, on where to look ?
    Thanks!

    Nothing changed. Can someone tell me how can i debug this ? How can i search to solve this ?
    Here are some pics for what i mean
    As you can see there are no app icon , folder and files icons.
    From where did it loads them ?

  • XFCE startup application changes not saving

    Hey all,
    Not sure if this is the right place for this. I am new to Arch but not to *nix. I am using XFCE for the first time. I am having an issue where dropbox is starting before networkmanager establishes a connection so I am trying to change the line in the ~/.config/autostart/dropbox.destop to read:
    sh -c "nm-online -t 120 && /opt/dropbox/dropboxd"
    however, whenever i change this and reboot or relog the line reverts back to "/opt/dropbox/dropboxd". I tried changing this in the XFCE session and startup gui but the same thing happens. Any idea how to get this setting to stick permanently?
    Thanks in advanced! :-)

    It can be difficult getting items to launch in a particular order using ~/.config/autostart, and even more difficult having them wait until network manager has brought the network up.
    May I suggest trying network manager's dispatcher.d directory. Here scripts are executed in number/alpha order upon the netowrk coming up and in reverse numerical/alpha order prior to the network going down.
    This way you can launch/mount/start and terminate/unmount/stop apps/filesystems/services based on the state of the network.
    For example, I start/stop ntpd, netfs and mount/unmount my NAS as follows:
    /etc/NetworkManager/dispatcher.d
    10.ntp_daemon
    15.netfs
    20.mount_unmount_nas
    The scripts must be executable and owned by root, and they are executed as root, so ensure you include the necessary code to launch apps as your user where required.
    A sample script follows:
    #! /bin/bash
    INTERFACE=$1 # The interface which is brought up or down
    STATUS=$2 # The new state of the interface
    case "$STATUS" in
    'up') # $INTERFACE is up
    # your code here
    'down') # $INTERFACE is down
    # your code here
    esac
    Cheers.

  • Cannot switch preferred application to open pages document

    When I double click a .pages document the application Preview opens and tries to open the document. If I do a Command+I or Get Info I see that the Preview application is selected to open the document. If I then click the dropdown menu to see what apps will open it I see Pages (default). Preview is not even listed. If I select Pages and click the Change All… button it switches back to Preview. It seems there is a preference file that is not functioning properly or something within the OS. How do I fix this?

    Have you done any maintenance of the computer lately? You can use the Disc Utility or the free Onyx from _http://www.titanium.free.fr/_
    Delete the file Jerrold mentioned and restart the computer. Don't start Pages or Preview before you have restarted the computer again.

  • XFCE4 & Preferred Applications; Mail reader 'claws mail' wont open

    Configuring my XFCE4 setup I wanted to set Claws Mail as my standard mail client, such that when I open links in my browser pointing to mail addresses (mailto:[email protected]) that specified mail clilent automatically opens and lets me type my mail right away.
    Now... that doesn't work. First Sylpheed Claws was set as my Mail Reader (apparently installing claws mails leads to two entries in the /usr/bin, one for Claws Mail and one for Sylpheed Claws). I switched to Claws Mail, and... it doesnt work.
    So, what is there to do about this issue? Any workarounds?
    I am using Epiphany as my browser, if that's relevant.
    Ah, I also wanted to track this problem down by opening Epiphany in the terminal and see what happens (error messages that is). But it won't open in the shell. I start it, it runs, but there is nothing printed in the prompt (if I close the terminal again, epiphany stays open). Can I force it to run inside the shell?

    Although the post is quite old -- I have the same problems using awesome window manager, epiphany browser and claws-mail.
    If someone still uses Epiphany with webkit see
    http://www.mail-archive.com/epiphany-li … 03090.html
    For epiphany 2.30 I tried
    $ mkdir -p ~/.gconf/desktop/gnome/url-handlers/mailto
    $ gconftool-2 --set /desktop/gnome/url-handlers/mailto/command -t string 'claws-mail --compose %s'
    $ gconftool-2 --set /desktop/gnome/url-handlers/mailto/enabled -t bool true
    But it won't work ;-( Has anyone ideas?

  • Setting prefered applications manually in Gnome 3.2.1

    Hello,
    I just switched from Chromium to Chrome. I first did sudo pacman -R chromium and then installed google-chrome from AUR.
    In the System Settings it still shows Chromium as the default web browser but I can't change it to chrome since there is no other entry.
    When I started Chrome for the first time it asked me if I want it as my default browser but that did not have any effect.
    Is there a way to set Chrome as default manually. I can't use any links in Pidgin anymore.
    Kind Regards,
    blackout23

    I had this same problem but it's gone. I did many things that I don' know what they mean, but I guess solve was pavucontrol or alsa-utils + weird systemctl commands i found with help of search engines. Volume is mute on login screen but goes on after login.
    pacman -S pavucontrol
    pavucontrol
    and put volume up. If this doesn't help also try installing alsa-utils and
    systemctl enable alsa-store.service
    Last edited by arghhlinux (2013-02-21 14:02:41)

  • Cannot set preferred application to open .eml files

    I usually use SeaMonkey 2.0.5Pre (Mozilla) as my browser and mail client. I have a number of e-mails that were saved as .eml files, using SeaMonkey. Recently I had some general system problems. In the process of rectifying these, I rebuilt my hard disk directory, using Disk Warrior, and the LaunchServices database, using Onyx.
    Ever since then, some of my saved .eml e-mails open in MS Entourage (which I possess but have never used) when double-clicked; and "Finder/File/Info/Open with/Change all" does nothing to discourage this behaviour. How can I persuade all .eml files to open in SeaMonkey?

    There's also RCDefaultApp, which can access all those settings...
    http://www.rubicode.com/Software/RCDefaultApp/

  • Making Safari open links with preferred application NOT download the data.

    Hi all
    The subject says it all really. I'm trying to find out how I can click on a web link and launch a program to play the content rather than the default save to desktop and then having to open it manually? Any ideas?
    Thanks
      Mac OS X (10.4.3)  

    http://swcdn.apple.com/content/downloads/37/23/041-5058/lr5tynbldi18zcrqo8a8uq88 rnjushqliu/Safari6Lion.pkg 
    Here you go.....

  • [Solved]Unable to set default browser

    Using XFCE I can set the default browser from settings/Preferred Applications to either google chrome or firefox both of which are installed. I set chrome as preferred and can get online no problem. The setting will stay for sometimes days or maybe a few minutes before the system 'forgets' what preference has been set and reverts to no preference set.
    Using thunderbird to open links in emails always opens Firefox despite the default browser being set to chrome. In fact firefox always stays set as default browser under preferences/general and I can have firefox and chrome open at the same time with both claiming they are the default browser. If I set the system preference to firefox then open chrome it detects it is not the default browser and allws me to set it as default, this always seems to set the system preferences to not set so it removes firefox but not not set chrome, if I then open firefox it does not give the message about not being the default but checking in preferences/general it is already set as default.
    I seem to be going around in circles for the last few weeks, can someone point me in the right direction?
    Last edited by weedfreak (2012-09-23 09:43:11)

    Well I had also tried using XFCE Preferred application to set it and that also did not work, there was also an anomaly with the menu entry for Web Browser, it always claimed there was no preference set and I needed to select the session browser from the list.
    The link provided was not really a lot of help directly, but it did point out that xdg-open is broken and gave me some directions to search in, eventually I found the ~/.local/applications/mimeapp.list contained a lot of references to firefox that stayed in place even if preferences were changed, they were listed before the chrome entries. I deleted every line with firefox in then when I tried a link from Thunderbird I was asked to choose a browser and the change stuck, the web browser menu link also works correctly.
    Not sure if this is really solved or if it is a workaround but I'll mark it solved.

  • [solved] XFCE default mail client

    In preferred applications in the XFCE settings manager the two simple questions appeared: default web browser and default mail client.  I set these to firefox and thunderbird respectively, and XFCE indeed recognized that I meant Bon Echo and Mail/News. For the strangest reason, every hyperlink to an HTTP or FTP protocol will indeed open up in firefox and go where it should, but mailto links will do nothing.  In firefox I searched about:config for all options containing the world "mail" and set them to enable as many things as possible.  Gmail is smart enough to open mailto links because it overrides the default mail client behaviour and just opens up a Gmail compose window, which I'm sure many of you know.  This is another one of those minor problems that I'm having alot of these days, so any help would be appreciated.
    Last edited by ConnorBehan (2007-09-14 01:17:42)

    maybe this will help:
    http://bbs.archlinux.org/viewtopic.php?id=26461

Maybe you are looking for

  • How do I install Adobe Photoshop in a new computer? I've had CS5 a few years ago in another laptop.

    Basically I got the student version of Adobe Creative Suite 5 back in high school. I'm now in college (still a student!) but I used my high school email to register the product. I deactivated the adobe photoshop in the old computer and have the seria

  • Newbie Adobe Captivate question

    :embarrassment; I assume I am doing something wrong and just don't realize - here is my issue. I have 2 ***.exe files that are training files created in captivate that I want to watch. They sort of play but don't. I see the starting screen but I don'

  • Using iPhoto and Snapfish

    I am trying to use Snapfish (www.snapfish.com) to share my photos with others and keep getting the message: "The page "Snapfish: Upload Pictures" has content of MIME type "application/x-photocenter-upload". Because you don't have a plug-in installed

  • Problem with developer key

    Hi, I am a MiniSAP user. I wanted to write ABAP's programs but I cant change repository objects. I followed the instructions on www.sap.com/minisap with expanding my license and it worked. However as I enter developer key from that site (it is alread

  • Need help RE: "Type Conversion"...

    Hi, need some urgen help here... I had done the following below: ===== import java.awt.*; import java.applet.*; public class Demo extends Applet      int ivalue = 3;      double dvalue = 3.9;      int a1 = dvalue;      double a2 = ivalue*2;      publ