Page 1 of 1

Arch - Fixing Gnome extensions

Posted: 01 Feb 2012, 22:43
by viking60
Arch has a small problem since it always is the first, they had put a lot of extensions in AUR and in the repos.
Now since we have this site there is no need to pack all those extensions and it has conflicting potential.
So the archers removed the entire enchilada from the repos even If I still had them installed,
So what to do?
I remembered that all the extensions started with gnome-shell-extension so I went for the mass destruction:

Code: Select all

sudo pacman -Rns $(pacman -Qq | grep gnome-shell-extension)

This found and removed the entire enchilada containing gnome-shell-extension:

Code: Select all

Mål (11): gnome-shell-extension-apps-menu-3.2.1-1  gnome-shell-extension-auto-move-windows-3.2.1-1  gnome-shell-extension-dock-3.2.1-1
          gnome-shell-extension-drive-menu-3.2.1-1  gnome-shell-extension-native-window-placement-3.2.1-1  gnome-shell-extension-places-menu-3.2.1-1
          gnome-shell-extension-weather-git-20120115-1  gnome-shell-extension-windows-navigator-3.2.1-1  gnome-shell-extension-workspace-indicator-3.2.1-1
          gnome-shell-extension-xrandr-indicator-3.2.1-1  gnome-shell-extensions-common-3.2.1-1

Totalt fjernet:   0,67 MiB

Vil du fjerne disse pakkene? [J/n] j
( 1/11) fjerner gnome-shell-extension-xrandr-indicator                                               [############################################################] 100%
( 2/11) fjerner gnome-shell-extension-workspace-indicator                                            [############################################################] 100%
( 3/11) fjerner gnome-shell-extension-windows-navigator                                              [############################################################] 100%
( 4/11) fjerner gnome-shell-extension-weather-git                                                    [############################################################] 100%
( 5/11) fjerner gnome-shell-extension-places-menu                                                    [############################################################] 100%
( 6/11) fjerner gnome-shell-extension-native-window-placement                                        [############################################################] 100%
( 7/11) fjerner gnome-shell-extension-drive-menu                                                     [############################################################] 100%
( 8/11) fjerner gnome-shell-extension-dock                                                           [############################################################] 100%
( 9/11) fjerner gnome-shell-extension-auto-move-windows                                              [############################################################] 100%
(10/11) fjerner gnome-shell-extension-apps-menu                                                      [############################################################] 100%
(11/11) fjerner gnome-shell-extensions-common                                                        [############################################################] 100%


So now a simple update would not conflict. But I lost my themes and a lot of good stuff so I needed to install:

Code: Select all

sudo pacman -S gnome-shell-extension-user-theme

This package was in conflict with some of the ones removed above. After that I can now re-install and update all my extensions from:
https://extensions.gnome.org/
Life is good again :-D

Re: Arch - Fixing Gnome extensions

Posted: 02 Feb 2012, 19:46
by dedanna1029
Thanks. Will keep this in mind when it comes time for this kid to update (need inet at home for it).