Whippet (formerly Ease): application launcher and xdg-open replacement

Whippet is a Bash script which opens files and urls with applications associated by name and/or MIME-type. Applications and associations may be customized within an SQLite database, and can be weighted according to the importance you assign to them. Whippet can serve as an xdg-open replacement for those who wish to have total control over which applications are associated with which types of files. For more experienced users only, but ideal for integrating with light desktop environments and file managers. Whippet uses dmenu to manage its menus, and you will also need a program such as DB Browser for SQLite for managing the SQLite database. Once installed from the AUR package, execute the command 'man whippet' for more information.
Edit on 2015-06-23: Updated for Whippet 2.1.2.
Edit on 2015-03-15: Rebranded as Whippet; was formerly Ease.
Last edited by ninian (Today 14:24:22)

Version 1.2.0 has been released, with the following new features:
Can now optionally associate applications by matching regexes to file/URI names in the configuration file.
New option -n and configuration variable $assocname control the usage of associations by file/URI name.
Also:
Fixed a bug causing a loop in the fallback menu when an alternative configuration directory is specified.

Similar Messages

  • Linopen - Yet another xdg-open replacement

    Inspired by Taylorchu's mimi, I decided to make xdg-open replacement written in bash that has somewhat flexible configuration.
    You can match either, extensions, mime types, mime groups, or regular expressions of the filename.
    You can also specify applications that you wish to open in terminal, and linopen knows when the process should be opened in new terminal or in your current open terminal.
    Example configuration
    # linopen configuration
    # enviroiment variables can be used
    # Specify your terminal emulator here
    # for terminal support.
    terminal=xterm
    # Specify all programs you want to
    # open in terminal like this:
    interm=vim
    # There are 4 ways to match filetypes.
    # The following examples are in the order
    # which linopen chooses the program as well.
    # 1. File extension
    # .png:sxiv
    # .mp4:mplayer
    # .txt:vim
    # 2. Mime type
    # image/png:sxiv
    # video/mp4:mplayer
    # text/plain:vim
    # 3. Mime category
    image:sxiv
    video:mplayer
    audio:mplayer->interm # you can also specify the interm rule explictly after '->'
    text:vim
    # 4. Regexp
    # Match some protocols by default
    ?'^http:\/\/':$BROWSER
    ?'^https:\/\/':$BROWSER
    ?'^www.':$BROWSER
    # Directory rule for directories
    # ideally you want to use file manager
    # here if you are a GUI user.
    directory:echo
    # Default rule just echoes back whatever
    # was feed. If you are using DE you could
    # just map a file manager here and it would
    # integrate with your system.
    default:echo
    PKGBUILD here
    Refer to the configuration file for more detailed how-to.
    There is also 'open' symlink to xdg-open to emulate Mac Os X behaviour.
    Last edited by Cloudef (2012-07-17 16:08:41)

    In this case it would be better to change the PKGBUILD to this
    # Maintainer: Cloudef <[email protected]>
    # Intelligent and suckless replacement for xdg-open
    pkgname=linopen
    pkgver=1.0
    pkgrel=1
    pkgdesc='Intelligent and suckless replacement for xdg-open'
    arch=('any')
    url='http://cloudef.eu'
    license=('WTFPL')
    provides=('xdg-utils')
    conflicts=('xdg-utils')
    backup=('etc/linopen.conf')
    source=('xdg-open' 'linopen.conf')
    package() {
    cd "$srcdir"
    mkdir -p "${pkgdir}/usr/bin"
    mkdir -p "${pkgdir}/etc"
    ln -s "/usr/bin/xdg-open" "$pkgdir/usr/bin/open"
    install -m755 xdg-open "${pkgdir}/usr/bin/"
    install -m755 linopen.conf "${pkgdir}/etc/"
    md5sums=('f5487fc4c305a20124da7bb164e6b04d'
    '2c9078f3ee82d619dc150bb44837d9e8')
    or (imho nicer) with this package function
    package() {
    install -Dm755 "$srcdir/xdg-open" "${pkgdir}/usr/bin/xdg-open"
    install -Dm755 "$srcdir/linopen.conf" "${pkgdir}/etc/linopen.conf"
    ln -s "/usr/bin/xdg-open" "$pkgdir/usr/bin/open"
    Last edited by Army (2012-07-03 16:04:13)

  • How to raise application error and preserve open cursor...

    Hello,
    I have to raise an application error under certain circumstances.
    In some cases there's an open cursor that has to be read by the calling application anyway because there are data that have to be read.
    In other cases the cursor does not have to be read.
    sample code:
    create or replace procedure get_address(
    pv_street varchar2,
    pv_number varchar2,
    pr_retid in out number,
    pr_refcurs in out get_streetpkg.t_refcurs )
    v_rowcount number;
    v_no_suiting_number boolean := false;
    begin
    delete temp_addr;
    -- get suiting rows
    insert into temp_addr
    select * from addr
    where street like pv_street
    and number like pv_number;
    v_rowcount := sql%rowcount;
    -- if no suiting row found then get all
    -- suiting streets regardless of number
    if v_rowcount = 0 then
    v_no_suiting_number := true;
    insert into temp_addr
    select * from addr
    where street like pv_street;
    end if;
    -- check whether data has been found
    select count(*)
    into v_rowcount
    from temp_addr;
    -- set return id if only one row is found.
    if v_rowcount = 1 then
    select id from temp_addr
    into pr_retid;
    end if;
    -- open cursor to provide data
    open pr_refcurs for
    select * from temp_addr;
    -- generate error - if no data found at all
    -- no data has to be read...
    if v_rowcount = 0 then
    raise_application_error( -20001, 'no data found' );
    end if;
    -- generate error - or better notification - message if no number found...
    -- SELECTED ROWS HAVE TO BE READ ANYWAY!!!
    if v_no_suiting_number then
    raise_application_error( -20002, 'streets found, but no suiting number' );
    end if;
    return;
    end;
    Prerequisites:
    - The calling application reads the open cursor and closes it.
    - The application cannot provide additional arguments and the stored proc cannot be converted into a stored func.
    - I cannot put the procedure into a package.
    - The application has to get information about success or failure (and reason of failure) through provided error numbers (-20999..-20000).
    Whenever the error is raised and pr_retid was set, retid is not set in the application, neither is the cursor.
    So what can I do to provide return ID and row data???
    Hope anyone can help me.
    Greetings, Heiko Kaschube
    null

    Sorry, I didn't read your list of pre-requisites carefully enough. Your problem is that prerequiste #4 (return Application Error number) is in flat contradiction with prerequisite #1 (calling application continues processing).
    To restate: RAISE_APPLICATION_ERROR means "the called program has encountered a problem so please cease processing and handle the error". Using RAISE_APPLICATION_ERROR prevents the calling program doing any more processing: control goes to the EXCEPTION handler. Therefore RAISE_APPLICATION_ERROR should only be used for abnormal processing conditions.
    I fail to see why you want to use RAISE_APPLICATION_ERROR to handle a situation which is quite obviously not an application error: your called program has found some data that you want to process.
    yours in puzzlement, APC

  • Safari and firefox won't launch and explorer opens but won't load correctly

    Hi
    Something weird is happening to our emac!
    Got home yesterday after a few days away and all the apple aps have stopped working
    Safari and itunes won't launch at all - they just bounce a couple of times in the dock - then nothing.
    Firefox won't launch either - the only browser I can get to launch is explorer - and that won't load properly.
    I've tried the software update - it says there's now software - but 'unexpectedly' quits if i try to download anything.
    In desperation overnight I re-installed the software from the software restore discs - but this morning it's no better.
    I saw a thread earlier that suggested that rogue fonts might be to blame - which could be something because the only page that loads in explorer displays strangely with the fonts all over the place.
    Any advice that someone could give would be much appreciated
    thanks x

    HI,
    *"In desperation overnight I re-installed the software from the software restore discs - but this morning it's no better."*
    Better check the startup disk for errors.
    Insert Installer disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your start up disk and click Restart
    While you have the Disk Utility window open, look at the bottom of the window. Where you see Capacity and Available. Make sure there is always 10% to 15% free disk space.
    If you cannot boot from your install disk, try booting in Safe Mode
    What is Safe Mode
    Carolyn

  • Application launches and immediately quits without any message

    I have an old powerbook G4 which I use for only one purpose- to run Mathcad 6 in the Classic environment. (Mathsoft discontinued supporting Macs many years ago so I'm stuck.)
    Today I started it up, launched Mathcad, it flashes its startup window then disappears and I'm back in OS X. Other Classic applications run OK.
    I seem to remember this happening many years ago with an application, but cannot at all remember what it took to fix it. This particular application has been running flawlessly for me, but now I can't get it to do anything more than flash the startup screen for a second and then quit.
    Any suggestions will be greatly appreciated!
    George O.

    {quote:title=Simon Teale wrote:}
    Top 2 tips,
    2. Increase the memory allocation in MathCad.
    1. Reduce the screen colours to 256 or thousands.{quote}
    God tips, Simon. However, setting monitor resolutions may have actually been a culprit in corrupting a preference file for the Classic Application.
    Recently I just acquired a Dell monitor replacement for my G3, and when I went and changed monitor settings and graphics options the graphics for the App. to optimize it it got corrupted. I tried and tried resetting monitor and graphics settings to no avail of the corrupted graphics. Finally I remembered to trash the preference file for the app. and restarted and it was fine.
    [Here|http://docs.info.apple.com/article.html?artnum=61528] is the article about
    memory allocation for Classic. I generally set my higher demanding applications
    using the Apple menu calculator to 3Xs the Suggested Size in the Preferred Size and 2Xs the Suggested in Minimum Size. You can do this really easy too by Copying
    and pasting within Classic Calculator and using the keyboard instead of the mouse
    for Classics small calculator.
    !http://img189.imageshack.us/img189/6584/mikemsigq.png!

  • I have lost my Profiles folder in Applications Library, and cannot open Safari now?

    I attempted to uninstall and reinstall Firefox due to experiencing extreme slow/freezing problems. However I restarted my computer in the middle of Firefox reinstalling all my Profile details (as I thought again, it had frozen). Now I have no Profile folder in Applications Library, so Firefox won't even open.

    Back saving to MIF should work, but it’s probably faster to just retrieve a backup of the FM8 files & books and restore them over your botched FM12 versions. Then take a copy of that backup and put it on the trial machine to play away without impacting anything else.

  • When firefox launched and kept open, automatically opens multiple sessions for ads and pornography which I have never visited. sessions hide in legitimate ones

    I use firefox exclusively. I open many sessions simultaneously mostly one site per session in a single tab. At times during the day when I keep firefox open, I will return to a previous site/session and before I am able to see it, I am getting browser 'pop-ups' of ads for TJ MAxx (a site I never visit) and hard-core porno (a site i never visit and not part of my browsing demographic). These are completely random and hide behind legitimate browsing sessions and are not listed in history etc. They are not being removed by adware or Norton and they are driving me nuts not to mention the embarassment of trying to launch a legitimate site and getting disgusting porno in your face while working with colleagues. Please help!

    '''Scan for Malware'''
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    '''Reset Firefox'''
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • How can I make applications, documents, and downloads open directly in finder?

    Options doesn't offer this as  a choice; I just get list or stack.
    tnx

    jayxtee wrote:
    Options doesn't offer this as  a choice; I just get list or stack.
    tnx
    Select folder.
    Or
    Choose Open "folder name"

  • Application launches fail after wake up from sleep when switching from one open directory to another

    I take my MacBook Pro back and forth from home to work.  Open Directory is set up at both locations running on Snow Leopard server.  These two locations are entirely separate domains and IP networks.  The only thing that is the same is my username and password, which is the same in both locations.
    If I put my machine to sleep in one location and move to the other location and wake it up, I can usually launch one application, then no other applications launch and the machine is pretty much frozen up except for mouse cursor movement.  Using command-shift-escape and relaunching the finder doesn't help.
    It is as if the launch daemon has been made inoperative.  Apps just sit and bounce.
    Should one be able to log in one one network with open directory. Close all applications, move to an entirely different network, and wake up from sleep and continue working?  The login/password is identical on both open directory setups.
    Both home and work are set up so the users can "travel" and the machines are not "bound" to the open directory server.
    I've started using the "other" login box to login in which I think keeps the machine more independent of open directory and that seems to work better for moving between networks.
    Any ideas and/or comment welcome.
    (my DNS seems fine in both environments.  running changeip gets "success" in both places)

    After reading another post that popped up under "More Like This" after I posted this I may have found at least a temporary fix.  Unplugging and reseating the MDP adapter in the MacPro didn't accomplish anything but unplugging/reseating the HDMI plug in the Viewsonic brought it back to life.
    I guess I can live with this but it would be nice knowing that there's a more permanent fix for this.

  • Introducing ayr - a high density but no-nonsense application launcher

    Ayr has been forked from fyr and it uses dmenu to manage menus of application launchers, which can be either executables or desktop files. It also opens files and URIs with launchers, desktop files, or applications associated by MIME-type. Desktop files and file associations are detected according to XDG standards, as far as is practical, and a wrapper is provided to let ayr function as an xdg-open replacement. Launchers can be grouped and/or made read-only with tags. Available now as an AUR package; execute the command 'ayr -h' for much more information once installed.
    Main selling points:
    Quickly runs, adds and deletes launchers and tags through menus.
    Compliant with XDG standards and supports a wide range of desktop file keys.
    Great for integrating with minimal desktop environments and file managers.
    Notes for fyr users:
    Functionality is similar to fyr, but launchers are stored in a single file rather than as symbolic links, leading to faster and less cumbersome processing. Also, tags are handled much more conveniently by ayr and their selection is menu-driven. It is intended that ayr will supersede fyr.

    Version 1.2.0 has been released, with the following new features:
    Can now optionally associate applications by matching regexes to file/URI names in the configuration file.
    New option -n and configuration variable $assocname control the usage of associations by file/URI name.
    Also:
    Fixed a bug causing a loop in the fallback menu when an alternative configuration directory is specified.

  • Missing files, user folder, application folder and system folder

    I am using a MacBook Pro 2011 model with OS X 10.9.4.
    Since I bought the machine several years ago, I have had only a few small problems with it. Yesterday I wanted to reduce the size of a video, so I downloaded a video compressor/converter software, and left the computer on and the program compressing my video whilst I went off to work. When I returned home, the compressing program had a pop-up saying ''Could not complete compression, system full'' or something along those lines.... After trying to play the movie without success, I decided that I would restart my computer, as it had been on all day.
    When the computer restarted, it came up with the grey loading bar, which usually comes up when I have done a software update. It disappeared quite soon and several minutes later, my user profile appeared. I logged in as normal, and then tried to open my browser. An error message popped up stating"Can't open user profile directory, because you lack sufficient privileges. You might want to contact the administrator of this machine". I then tried to open other programs and they all came up with similar messages and did not open. Skype stated "Can't create a lock file at Users/Lauren/Library...etc".
    I then went to Finder to look at my applications and they were ALL GONE! Then I went to a folder I have with all my files called "My files", and although the primary folders were visible, "SCHOOL,WORK, HOLIDAYS PICS, etc", these folders were empty. I then checked my User folder, and my systems folder and these were empty too. However, the Desktop and Documents folders still contain the documents that were previously there, and my background images remained the same.
    I tried to open Word, and although it is also missing from the applications folder, and it opened, also allowing me to open a document which I know is located within the 'empty' folders. I have a feeling that my documents and files are still on my computer, but I don't know how to access them!
    Please if someone could shed light on the situation! All my work files and personal files are on this computer and I would be devastated to loose them!
    Let me know if you need any more ino or screen shots!
    Kind regards,
    Lauren

    OS X- Gray progress bar appears under Apple logo during startup
    You need to start by doing the following:
    Reinstall Lion, Mountain Lion, or Mavericks without erasing drive
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported then click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu.
    Reinstall Lion, Mountain Lion, or Mavericks
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • Elements 11 will launch but not open beyond the icon

    Hi All,
    I have Elements 11 running on Win 8.1 on a Dell XPS.  The Organizer has worked fine before, but now, all of a sudden it will launch from the desktop icon, ask me to find the catalog, but then it simply stays minimized in the task bar.  If I right click on the icon in the task bar, I can see a small image from my catalog, I just can't get it to restore to where I can use it.  (I'm not sure what precipitated this behavior, but it's not the upgrade to 8.1, as it happened before that.)  If it matters, the catalog is on an external hard drive.  This hasn't mattered before.  Also, I share this catalog with someone using Elements 11 for the Mac.  This too, has worked in the past.  The only thing I can think of that might be related is that we upgraded my friend's computer recently and imported the whole collection into iPhoto on her Mac.  But that didn't involve Elements at all.  Any ideas?  I have tried shutting down and rebooting to no avail.
    Note that Elements 11 Editor will launch and fully open just fine.  I tried switching from there, but that, too, didn't work.
    Many thanks,
    copperberry
    UPDATE:  It turns out the Organizer was stuck on a third monitor that was disabled.  Once I extended the screen to that monitor, I could see the Organizer, move it to the screen I wanted and then revert back to my original display setup (2 external monitors, laptop monitor disabled.)
    Message was edited by: copperberry

    First, you may need to install the Adobe licensing-service update:
    http://www.johnrellis.com/psedbtool/photoshopelements-6-7-faq.htm#_Install_the_licensing-s ervice
    If that doesn't help, try Adobe's generic troubleshooting steps, which include installing with anti-virus disabled and running as administrator:
    http://www.johnrellis.com/psedbtool/photoshopelements-6-7-faq.htm#Try_Adobes_generic_troub leshooting

  • Application launcher update problem

    I have one user that travels between 2 sites and whenever they go to one
    site or the other they run nalexpld.exe which tells them there is a new
    version of application launcher and they must reboot. Both of these sites
    are running SP3 with a Zen patch for COMCTL32.dll on top of that so they
    SHOULD be the same.
    The user in question might spend alternate days between sites so this is
    quite annoying for them. I have done a search under NAL* in the public
    directory and some of the files are slightly different date wise.
    What files are looked at when NALEXPLD.EXE runs and can I manually copy
    across one set from one server to the other without causing a problem to
    finally get these fiels in sync.

    Simon, look at this TID:
    What files does NAL update automatically when launched?
    http://support.novell.com/cgi-bin/se...?/10054188.htm
    If all these files are at the same version on both servers, then the
    user shouldn't get the message. Also pay attention the timestamps of the
    files and the timezone settings of the servers and the workstation.
    You also use naldesk.exe instead of nalexpld.exe - it will just start
    nal without updating any files.
    Deyan
    [email protected] wrote:
    > I have one user that travels between 2 sites and whenever they go to one
    > site or the other they run nalexpld.exe which tells them there is a new
    > version of application launcher and they must reboot. Both of these sites
    > are running SP3 with a Zen patch for COMCTL32.dll on top of that so they
    > SHOULD be the same.
    >
    > The user in question might spend alternate days between sites so this is
    > quite annoying for them. I have done a search under NAL* in the public
    > directory and some of the files are slightly different date wise.
    >
    > What files are looked at when NALEXPLD.EXE runs and can I manually copy
    > across one set from one server to the other without causing a problem to
    > finally get these fiels in sync.

  • Best XDG Opener?

    What is the best XDG Opener? (Like rox, exo-open (XFCE), gnome-open, mimeopen, kioclient)
    Right now I'm using "rox", but I don't like how it comes with a file manager. I'd like to be able to have a seperate file manager and xdg opener, so I can pick and choose easily. Also rox can't open urls.

    It seems that xdg-open will always use one's browser if one does not have a major DE (that is KDE, Gnome or XFCE). This is denoted generic in xdg-utils.
    From the change log it seems that xdg-open would query mimeopen . This functionality is not present in xdg-open at the moment though. I might have something to do with this bug.
    I found a nice patch that will make query mimeopen when using xdg-open.
    The patch is located here.
    Basically one just needs to change the open_generic() function in /usr/bin/xdg-open to:
    open_generic()
    if mimeopen -v 2>/dev/null 1>&2; then
    mimeopen -n "$1"
    if [ $? -eq 0 ]; then
    exit_success
    fi
    fi
    IFS=":"
    for browser in $BROWSER; do
    if [ x"$browser" != x"" ]; then
    browser_with_arg=`echo "$browser" | sed s#%s#"$1"#`
    if [ x"$browser_with_arg" = x"$browser" ]; then "$browser" "$1";
    else $browser_with_arg;
    fi
    if [ $? -eq 0 ]; then exit_success;
    fi
    fi
    done
    exit_failure_operation_impossible "no method available for opening '$1'"
    It works well for me. I don't know why the removed this IMO essential feature. They mention something about protocols in the bug report. . . If somebody knows more please enlighten me.
    --Rasmus

  • Xdg-open is indecisive and causes applications to not respond!

    For some reason, xdg-open will not respond usually when only called once on a file. Repeating the command rapidly however will work eventually (!?)
    $ touch foo.txt
    $ xdg-open foo.txt
    $ xdg-open foo.txt
    $ xdg-open foo.txt # after rapid [up-key]+[enter]s, this will work, for example
    $ xdg-mime query filetype foo.txt
    text/plain
    $ xdg-mime query default text/plain
    org.gnome.gedit.desktop
    It looks like everything should work fine, from the examples given above, but the problem is there. As a result, I have to repeat the command rapidly in the command line to work, and in Chromium I have to keep on clicking "open in folder" to get Nautilus to launch
    I remember when the problem started - it was when I installed libreoffice, and for whatever not-so-smart reason, it sets itself as the default app for text/plain, and application/javascript, in my limited usage. So I used:
    $ xdg-mime default gedit.desktop text/plain
    $ xdg-mime default gedit.desktop application/javascript
    ... to try and solve the issue, however I faced the same symptoms I am facing now, and even after removing .local/applications/*, I'm still experiencing the same problems
    I'm in desperate need of some help, and would appreciate anyone who has insight on this

    I've had this bug ever since GNOME 3.14 came in to Arch but have never found anybody else reporting it so I thought it was something specific to my configuration. Glad to see some others have it!
    If you run xdg-open once then it does start nautilus but nautilus does not open the window, e.g. "xdg-open .". Nautilus will stay running for about 1 min and it you run xdg-open again within that time it will work and open the window. As soon as Nautilus stops (or after you stop it with nautlius -q), then the next invocation of xdg-open will not work.
    PS later edit: I should point out that, consistent with my description of the problem above, if you use Nautilus to manage your desktop (i.e. set "Icons on Desktop" in GNOME Tweak Tool) then you won't see this bug because Nautilus is always running.
    Last edited by bulletmark (2014-12-22 05:34:16)

Maybe you are looking for

  • How to Send HTML Email from Webpage?

    Hi Everyone! I'm Looking to Send Emails with an Option to Send Text Format (from textfile on Webserver, ex. textfile.txt) or HTML Format (from webpage on Web Server, example: test.html). I will include My Current Code at the end of this Q. What Code

  • Lumia 625 "hangs" for 10-15 minutes and then resta...

    Hi, Just purchased a new Nokia Lumia 625 on 27 August 2013. From the afternoon of 28th the phone would hang and no activity can be performed on it. After about 10-15 minutes it will start by showing NOKIA -> Windows Phone -> normal screen. This has h

  • Error concerning HKEY_LOCAL_MACHINE when installing Quicktime 7.2

    This is the error I receive when trying to install Quicktime: "Could not open key: HKEYLOCALMACHINE|Software|Classes|QuickTimePlayerLib.QuickTimePlayerApp|CLSID. Verify that you have access to that key." I have manually edited the Regedit permissions

  • Windows 8.1 is compatible with boot camp?

    Hi, Can I install windows 8.1 on a Mac Book Pro Early 2011 with Boot Camp? Thanks

  • Replacing a active counter in a maintenance plan

    Hopefully someone can help.... I have a strategy plan that schedules off a counter. Now this same counter is used in various other plans so I don't want to replace it. I just want to pull it from the current plan, and replace it with a new counter I