LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 04-30-2014, 10:02 AM   #1
clod89
Member
 
Registered: Jun 2012
Distribution: Slackware gentoo debian
Posts: 41

Rep: Reputation: Disabled
Firefox icon issue


I'm usign the ruario's slackbuild to package the latest firefox version but I've noticed a small issue with the launcher in kde (just to be clear by launcher I mean right click on the window in the taskbar and choose Show A Launcher When Not Running).

The launcher itself works but there's no icon.

See this image for reference: https://imgur.com/4mpasD8

--edit--
Actually I've noticed on another install it seems to be a problem with the default slackware package too.

Last edited by clod89; 04-30-2014 at 10:19 AM.
 
Old 04-30-2014, 01:30 PM   #2
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,559

Rep: Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772
What version of the script are you running? The latest is here:

https://gist.github.com/ruario/9672798
 
Old 04-30-2014, 02:46 PM   #3
hpfeil
Member
 
Registered: Nov 2010
Location: Tucson, Arizona US
Distribution: Slackware Current
Posts: 376
Blog Entries: 1

Rep: Reputation: Disabled
Firefox 29? They went nuts, fiddling about and all. All of the icons are different. Home, refresh, back is a big circle with an arrow. Unless you specify, there's no menu bar. Sure, you can get it back by right-click an empty area in the tab bar. I made the mistake of skipping the tour offered first session after the upgrade. There's a new private window listed under the File menu.
--
Obquote: "Take the tour, Luke! Join the light side!" -New Star Wars Movie (attrib)

Why script? slackware[64]/xap/mozilla and thunderbird should be making the rounds. Keep checking your favorite mirror, takes a while to propagate. New QT version, too.

Tue Apr 29 23:35:59 UTC 2014
ap/screen-4.2.1-x86_64-1.txz: Upgraded.
l/qt-4.8.6-x86_64-1.txz: Upgraded.
xap/mozilla-firefox-29.0-x86_64-1.txz: Upgraded.
This release contains security fixes and improvements.
For more information, see:
http://www.mozilla.org/security/know...s/firefox.html
(* Security fix *)
xap/mozilla-thunderbird-24.5.0-x86_64-1.txz: Upgraded.
This update contains security fixes and improvements.
For more information, see:
http://www.mozilla.org/security/know...underbird.html
(* Security fix *)

Last edited by hpfeil; 04-30-2014 at 02:50 PM. Reason: remind location official packages
 
Old 04-30-2014, 02:54 PM   #4
schmatzler
Member
 
Registered: Jan 2011
Location: Germany
Distribution: Slackware64 -current + Multilib
Posts: 411

Rep: Reputation: 181Reputation: 181
Quote:
Originally Posted by hpfeil View Post
Firefox 29? They went nuts, fiddling about and all. All of the icons are different. Home, refresh, back is a big circle with an arrow.
Agreed. I don't know why Mozilla obviously tries to just copy Chrome. Firefox has ever been the Browser that can be customized the most and users loved it for that.

But now? No bar at the bottom with the status messages since Firefox 4 by default, address bar not designable anymore, the bookmark icon is now twice as big, the tabs just take more height ("awesome" idea for widescreens)...I could go on and on with that, but: There's an addon for fixing everything that they've broken:

https://addons.mozilla.org/de/firefo...themerestorer/
 
Old 04-30-2014, 03:56 PM   #5
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,559

Rep: Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772
Quote:
Originally Posted by clod89 View Post
The launcher itself works but there's no icon.
This should fix it:

Code:
$ rm ~/.local/share/applications/userapp-Firefox-*.desktop
$ sed -i '/userapp-Firefox/d' ~/.local/share/applications/mimeapps.list

Last edited by ruario; 04-30-2014 at 04:42 PM.
 
Old 05-01-2014, 03:42 AM   #6
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,559

Rep: Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772
Just to expand on the problem. This was caused by Firefox creating a userapp-Firefox-XXXXXX.desktop file and updating mimeapps.list to point to it. This will happen whenever you set Firefox as your default browser from within Firefox itself, rather than your via desktop environment. The breakage is because userapp-Firefox-XXXXXX.desktop can contain hardcoded paths (to binaries, icons, etc.), which might change with future Firefox releases.

I would recommend you set your default browser via the desktop environment itself, e.g. in KDE "System Setting > Default Applications > Web Browser". This avoids having to remove a broken userapp-Firefox-XXXXXX.desktop and correct mimeapps.list manually again in the future.

Last edited by ruario; 05-01-2014 at 03:46 AM. Reason: highlighted file names more clearly
 
Old 05-01-2014, 03:52 AM   #7
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,559

Rep: Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772
Quote:
Originally Posted by hpfeil View Post
Why script?
To avoid the wait and so that you (the user) can choose to go either ESR or regular release (Slackware does not provided packages for both for a given Slackware version).

P.S. This specific problem predates Firefox 29 and has nothing to do with their recent changes.
 
Old 05-01-2014, 07:53 AM   #8
Stephen Morgan
Member
 
Registered: Feb 2011
Location: England
Distribution: Slackware
Posts: 164

Rep: Reputation: 19
The launcher in E17 had the same problem, I changed the location of the icon in settings to "firefox", as opposed to the full path, and that fixed it.
 
Old 05-01-2014, 10:28 AM   #9
hpfeil
Member
 
Registered: Nov 2010
Location: Tucson, Arizona US
Distribution: Slackware Current
Posts: 376
Blog Entries: 1

Rep: Reputation: Disabled
Obquote: "Sorry about that!" -Maxwell Smart, Secret Agent 86.

Right you are, ruario. I fired that proofreader. Here's hoping her replacement does a better job of making sure I'm on topic.

PS. "Help|Firefox Tour" Shows you all of the brand new features that justifies the salaries drawn to fix something that wasn't broken yet again. Just push the security fix, then go back to wondering what you can do to confuse your unfortunate users. If only I could get Midori to work; seems to require too much gnomishness. But I digress, according to my new proofreader. Think I'll keep this one.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problems running ruario's latest-chrome dsotm Slackware 3 01-19-2014 11:53 AM
[SOLVED] Firefox 21 and Ruario's latest-firefox script neymac Slackware 14 12-19-2013 11:25 PM
[SOLVED] Firefox icon disappeared after the latest update ChrisAbela Slackware 1 01-15-2013 12:50 AM
Ubuntu "9.04" EeePC 1000H latest Firefox latest Flash unreliable DalePace Linux - Laptop and Netbook 1 08-23-2009 03:02 PM
Firefox died (Fedora Core 1, firefox latest) Brakki Fedora 1 03-05-2004 12:25 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 08:49 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration