Chromium "show in folder" and downloads in Lubuntu

Please post all general support questions for LXDE here.
Locked
Jeff91
Posts: 9
Joined: Sat Nov 07, 2009 9:27 pm
Location: Blue Island, IL
Contact:

Chromium "show in folder" and downloads in Lubuntu

Post by Jeff91 »

Howdy All,

So I recently installed Lubuntu on my netbook and I have it all working except for one hitch - when I download something in Chromium (such as a .deb or a .odt file) when I click on the finished download in the bar at the bottom of Chromium it does not open the file in gdebi/abiword as it should. Also when I right click on a file and select "show in folder" it does not work...

Any suggestions? Not sure if this is an issue with Chromium or LXDE/PCMan but I figured it couldn't hurt to post here asking about it.

Regards,
~Jeff
maces
Posts: 503
Joined: Sat Oct 25, 2008 6:04 pm
Contact:

Re: Chromium "show in folder" and downloads in Lubuntu

Post by maces »

Hi,

all distros are setup differently, so we can't help with every distro. To increase your chance of help, you can also ask at the Lubuntu project page on Launchpad or/and in chromium forums.

maces
Kaso_Da_Zmok
Posts: 1
Joined: Mon Jun 21, 2010 10:23 am

Re: Chromium "show in folder" and downloads in Lubuntu

Post by Kaso_Da_Zmok »

chrome uses xdg-open

it is dumb script, edit it to your needs. i use e16 and rox to show in folder.

Code: Select all

[root@rzcoolerm64 ~]# which xdg-open
/usr/bin/xdg-open
[root@rzcoolerm64 ~]# nano /usr/bin/xdg-open
scroll to the very end of the file and hardcode what you need. i replaced the open_generic with rox.

Code: Select all

    generic)
    rox "$url"
    ;;

#    generic)
#    open_generic "$url"
#    ;;
gymka
Posts: 27
Joined: Fri May 18, 2012 6:15 am
Location: Kaunas
Contact:

Re: Chromium "show in folder" and downloads in Lubuntu

Post by gymka »

I had same problem with firefox on archlinux(different browser and different distro) it was caused by wrong „default file browser“ association. in file ~/.local/share/applications/mimeapps.list(or /usr/share/applications/mimeapps.list) section [Added Associations] added line inode/directory=pcmanfm.desktop and it solved problem.
"Kvailam gimti ne sarmata. Tik mirti kvailam gėda." E. M. Remarkas
"Родиться глупым не стыдно, стыдно только умирать глупцом." Э. М. Ремарк
"To born stupid is not shame, just to die stupid is shameful." E. M. Remarque
kakakaji
Posts: 1
Joined: Sat Jun 09, 2012 11:06 am
Contact:

Re: Chromium "show in folder" and downloads in Lubuntu

Post by kakakaji »

Kaso_Da_Zmok wrote:chrome uses xdg-open

it is dumb script, edit it to your needs. i use e16 and rox to show in folder.

Code: Select all

[root@rzcoolerm64 ~]# which xdg-open
/usr/bin/xdg-open
[root@rzcoolerm64 ~]# nano /usr/bin/xdg-open
scroll to the very end of the file and hardcode what you need. i replaced the open_generic with rox.

Code: Select all

    generic)
    rox "$url"
    ;;

#    generic)
#    open_generic "$url"
#    ;;


You helped me so much. I'm confused about it for a long time. Thanks for sharing this.
Locked