Package Details: gnome-shell-extension-topicons-redux 6-1

Git Clone URL: https://aur.archlinux.org/gnome-shell-extension-topicons-redux.git (read-only, click to copy)
Package Base: gnome-shell-extension-topicons-redux
Description: TopIcons Redux is a fork of TopIcons Plus
Upstream URL: https://gitlab.com/pop-planet/TopIcons-Redux
Licenses: GPL
Groups: gnome-shell-extensions
Provides: gnome-shell-extension-topicons-redux
Submitter: artafinde
Maintainer: alerque
Last Packager: artafinde
Votes: 4
Popularity: 0.000000
First Submitted: 2019-01-27 10:30 (UTC)
Last Updated: 2019-01-27 10:30 (UTC)

Latest Comments

udaemon commented on 2019-10-04 10:47 (UTC)

@GrantMoyer: thanks for sharing this patch here! now, topicons redux works again.

GrantMoyer commented on 2019-09-24 16:53 (UTC) (edited on 2019-09-24 16:53 (UTC) by GrantMoyer)

Patch for until https://gitlab.com/pop-planet/TopIcons-Redux/merge_requests/1 lands:

--- _build/extension.js 2019-09-24 12:49:36.652085358 -0400
+++ _build/extension.js 2019-09-24 12:52:14.988754286 -0400
@@ -119,7 +119,8 @@
   let iconWmClass = icon.wm_class ? icon.wm_class.toLowerCase() : '';

   for ( let [wmClass, uuid] of blacklist ) {
-    if ( ExtensionUtils.extensions[uuid] !== undefined && ExtensionUtils.extensions[uuid].state === 1 && iconWmClass === wmClass) {
+    let extensionLoaded = uuid === undefined || ExtensionUtils.extensions[uuid] !== undefined && ExtensionUtils.extensions[uuid].state === 1;
+    if (extensionLoaded && iconWmClass === wmClass) {
       return;
     }
   }