Gnome-shell-extension-places-menu

Hello,
I have some questions about the places menu.
1. Is it possible to have it show an item that I have in my bookmarks which is to a samba share?
smb://192.168.1.202/temp/ (named Temp)
While that location is mounted, the item shows as a removable device. However, I would like to be able to mount the location from the places menu.
2. Is it possible to show removable devices (such as usb flash drives) before they are mounted? (I don't automount my drives)
3. Is it possible to see a newly added bookmark without restarting the shell? (or see removed bookmark go away)
I guess I am asking if it is possible to have the places menu in the shell show the items that are in the "places" of nautilus.
I have also played with the gnome-shell-extension-drives-menu. The description of the package describes that it can be used to mount and unmount removable media. How do I unmount without opening Nautilus?

Thanks
FYI gnome-shell needs to be restarted for changes to appear.
Alt+F2 type 'r' and enter to restart it.

Similar Messages

  • Gnome-shell-extension-places-menu how-to configure places? [SOLVED]

    Hi,
    How can I change the shortcuts that are listed under the places icon?
    I'm not able to find this anywhere on the net[?]
    Last edited by crescent (2011-06-26 20:19:55)

    Thanks
    FYI gnome-shell needs to be restarted for changes to appear.
    Alt+F2 type 'r' and enter to restart it.

  • Can't update gnome-shell-extensions-common

    I get this strange issue when updating today:
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    :: gnome-shell-extension-user-theme and gnome-shell-extensions-common are in conflict. Remove gnome-shell-extensions-common? [y/N] y
    error: failed to prepare transaction (could not satisfy dependencies)
    :: gnome-shell-extension-alternative-status-menu: requires gnome-shell-extensions-common
    :: gnome-shell-extension-places-menu: requires gnome-shell-extensions-common
    [brandon@brandon-arch ~]$ sudo pacman -S gnome-shell-extensions-common
    error: target not found: gnome-shell-extensions-common
    It seems the package has been removed from the repos, what the heck?
    http://www.archlinux.org/packages/extra … ns-common/
    404 not found.
    Showing user-theme as the only package in extra?
    http://www.archlinux.org/packages/?sort … =&limit=50
    Last edited by bwat47 (2012-01-31 18:22:16)

    nixIT wrote:
    bwat47 wrote:
    I had to remove all the extensions I currently had installed from the repos (including user-theme even though its still there) and gnome-shell-extensions common. Then I did pacman -S gnome-shell-extension-user-theme and it installed fine. After that I got the rest of the extensions from here:
    https://extensions.gnome.org/
    Note that this site currently only works in firefox. Find the extension you want and toggle the switch to on, it then asks if you want to install the extension.
    I am not sure what extensions I Have installed.  I don't think I installed any out of the default, though I did recently install cinnamon.
    how can I tell what needs to be removed?
    --nixIT
    ps.  still learning gnome 3
    If you don't run into any trouble when running an update you should be fine. If you do pacman should tell you which packages are causing the issue.
    Last edited by bwat47 (2012-02-01 19:51:51)

  • [Gnome Shell extension] PopupMenu not working

    Hi!
    I'm trying to develop a gnome shell extension, more precisely, a modification of the globalmenu extension. I want the old gnome2-globalmenu style instead of what have been already ported to gnome 3. So I've got a problem with my PopupMenu :
    I've got the menu but I can't click on it, the cursor doesn't have any effect on the menu, I can only click through all the menu items. The panel button code is shown below :
    function MyButton(label, path, app) {
    this._init(label, path, app);
    MyButton.prototype = {
    __proto__: PanelMenu.Button.prototype,
    _init: function(label, path, app) {
    PanelMenu.Button.prototype._init.call(this, 0.0);
    this._metaDisplay = global.screen.get_display();
    this._targetApp = app;
    let bin = new St.Bin();
    this.actor.add_actor(bin);
    this.actor.reactive = true;
    this._label = new St.Label({ style_class: 'panel-globalmenu-item',
    text: label
    bin.set_child(this._label);
    /*this._visible = !Main.overview.visible;
    if (!this._visible)
    this.actor.hide();
    Main.overview.connect('hiding', Lang.bind(this, function () {
    this.show();
    Main.overview.connect('showing', Lang.bind(this, function () {
    this.hide();
    this.menu.connect('open-state-changed', Lang.bind(this, this.refreshMenu, path, this.menu));
    refreshMenu: function(obj, open, path, menu) {
    if(!open) {
    return false;
    var xwindow = this._getTargetXWindow();
    if(xwindow != 0) {
    var manager = new Manager();
    manager.GetUiRemote(xwindow, path,
    Lang.bind(this, function(result, error, xwindow) {
    this.rebuildMenu(menu, path, result, xwindow);
    }, xwindow)
    return false;
    rebuildMenu: function(menu, path, ui, xwindow) {
    var xml = XML('<menu>'+ui+'</menu>');
    var i = 0;
    menu.removeAll();
    var current_group = new PopupMenu.PopupMenuSection();
    for each (var item in xml.*) {
    var visible = !([email protected]() == "false");
    var sensitive = !([email protected]() == "false");
    var menuitem = null;
    switch(item.name().toString()) {
    case "radio":
    case "check":
    var active = ([email protected]()=="true")
    menuitem = new PopupMenu.PopupSwitchMenuItem([email protected](), active);
    break;
    case "item":
    if([email protected]() == "true") {
    menuitem = new PopupMenu.PopupSubMenuMenuItem([email protected]());
    menuitem.menu = new PopupSubMenu(menuitem.actor, menuitem._triangle);
    menuitem.menu.connect('open-state-changed', Lang.bind(menuitem, menuitem._subMenuOpenStateChanged));
    menuitem.menu.connect('pre-open-state-changed',
    Lang.bind(this, this.refreshMenu, path + i + '/', menuitem.menu));
    } else {
    menuitem = new PopupMenu.PopupMenuItem([email protected]());
    break;
    case "separator":
    //menuitem = new PopupMenu.PopupSeparatorMenuItem();
    if(visible) {
    menu.addMenuItem(current_group);
    current_group = new PopupMenu.PopupMenuSection();
    break;
    case "empty":
    case "tearoff":
    default:
    menuitem = new PopupMenu.PopupMenuItem(item.name().toString());
    visible = false;
    break;
    if(menuitem) {
    if([email protected]() != "") {
    menuitem.actor.tooltip_text = [email protected]();
    menuitem.actor.has_tooltip = true;
    menuitem.actor.visible = visible;
    if(!sensitive) {
    menuitem.actor.add_style_pseudo_class('insensitive');
    menuitem.connect("activate", Lang.bind(this, function(menuitem, event, xwindow, path) {
    var manager = new Manager();
    manager.EmitRemote(xwindow, path);
    }, xwindow, path + i));
    current_group.addMenuItem(menuitem);
    i++;
    menu.addMenuItem(current_group);
    if (path == "/" && i == 1) {
    var quitMenu = new PopupMenu.PopupMenuItem("Close %s".format(this._targetApp.get_name()));
    menu.addMenuItem(quitMenu);
    quitMenu.connect('activate', Lang.bind(this, this._onQuit));
    _getTargetXWindow: function() {
    if (this._targetApp == null)
    return 0;
    var list = this._targetApp.get_windows();
    var window = list[0];
    return GlobalMenu.meta_window_get_xwindow(window);
    I don't know how to solve this issue, maybe someone could help me.

    No offense taken, and yes, I've seen the other threads. However this one is interesting since it a) works under root login and b) works on my laptop running an almost identical Arch setup (down to SLiM login and various other config files).
    Oh, and the gnome-shell-extension-apps-menu package is in the official repos, not AUR.
    Last edited by sultanoswing (2011-10-08 20:55:56)

  • New GNOME Shell Extensions That Provide A GNOME2-Like User Experience

    Ron Yorston has created some pretty cool GNOME Shell extensions that "provide a user experience more akin to that of GNOME 2". Using these extensions you can move the clock next to your username, get an old-style menu, disable dynamic workspaces and place the favourites on the top panel.
    you can get more info here:
    at webupd8.org and on his homepage
    I also made a package: gnome-shell-frippery
    here's a screenshot:

    I download gnote extension from this page: http://www.fpmurphy.com/gnome-shell-extensions/
    I edit extension.js from ~/.local/share/gnome-shell/extensions/[email protected] to have more tray icons on status bar and not only gnote (which I am not using). So I added Pidgin and Skype to the file. But with Pidgin there is problem, it has icon very top and I would like to have it in center like icon Skype...anyone know how to do this?

  • [SOLVED] Gnome Shell Extensions won't install from website

    When I go to https://extensions.gnome.org/ from either Chromium or Firefox, extensions fail to install. If I click the toggle to turn a new extension "ON", nothing happens. Reloading the site switches it back to "OFF".
    I was able to install gnome-shell-extension-mediaplayer-git from the AUR. (Which also pulls in gnome-shell-extension-common-git.) It works fine. The problem is that most of the extensions on the AUR appear to be outdated and the users directed to the official site.
    This is a relatively new install of Arch and extensions have never worked. Maybe there's a package I'm missing? Or is there a way to get any debugging output? I'm not sure where to look.
    Last edited by ioos (2013-02-27 23:50:32)

    I found the following from AskUbuntu (not my own words, pasted from the source:
    I'll take a wild stab in the dark: If you're using Chrome/Chromium, navigate to about:plugins and make sure "Gnome Shell Integration" is enabled. Then navigate back to extensions.gnome.org and when the ribbon appears at the top make sure you "Always Allow for this Site"
    On Firefox you'll have to do something similar if you've turned extensions off. Browse to about:plugins and make sure libgnome-shell-browser-plugin.so is present / enabled. If it's not, upgrade Gnome Shell, or find it on your filesystem and link to it from to ~/.mozilla/plugins (you shouldn't have to do this though).
    Source

  • Gnome-shell-extensions for status bar

    Does anyone know if it would be possible to make a gnome-shell extension to make the status bar at the bottom of gnome-shell always visible and that windows don't cover it?
    Thanks.

    Please start Gnome3 threads in [testing] as it is still under testing.
    Moving...

  • Gnome shell extensions issues since 3.2 release...

    I may be a little early in the game here but I figured I would just mention that I'm having issues with pretty much all the cool extensions I had installed prior to 3.2.  I was wondering if anyone else was having similar issues.  I changed 3.0 to 3.2 in the metadata.js file to no avail, they are still unusable.  Was there any other changes that needed to be made?
    The ones I cared the most about are:
    system monitor (the cool one in the aur, not the one in repo)
    weather
    a11y (i know there is a hack, but I'd prefer a extension... or just an option to be able to remove the dang universal access icon period)
    frippery (which are a bunch of different ones such as the apps button, quick launch, and such)
    Also all my themes are a bit messed up... so what was the biggest changes in 3.2 besides the transparency finally working in the terminal?
    I still like gnome 3 and know sometimes you have to take steps back to go forward...

    wonder wrote:who cares about extensions. they are unsupported by upstream
    Well i care about extensions, since i can not login into gnome after updating to 3.2.
    Maybe i didnt spend hours on fixing the problems, but is this  the sence it is supposed to be?
    The extensions were disabled by default, after the error message came, and it didnt do anything.
    Then i moved the extensions out of  /usr/share/gnome-shell, to make it work temporarily.
    What happened? Only one extension left that made problems: gnome-shell-theme-selector.
    Does anybody how to switch this off? Or something, that can login again?
    Edit:
    i found the info again, that this theme-selector is in ~/.local/share/gnome-shell/extensions
    I moved the extension one directory higher. And now in this error message window it is said that i should re-login,
    but there is nothing said about any extension any more.
    Last edited by Archoid Billy (2011-10-02 15:58:31)

  • Gnome-shell-extension-windows-navigator styling differs from the AUR

    I installed gnome-shell-extension-windows-navigator 3.0.1-0.20110513 from extra. When I used the AUR package, the styling was better.
    1) When hitting Ctrl the workspace number was displayed.
    2) When hitting Alt the window numbers were shown in the same style as close button just on the left side of the window. Now they are in the windows' top left corner and they are hard to seen.
    Is there a way to get that styling? I think I could get the extension's stylesheet.css from the AUR package, but it will be overwrite with every upgrade.thumbs

    sultanoswing wrote:https://extensions.gnome.org/
    derp. deeerrrrrp. DERRRPPRPRPRP. thanks man, forgot how easy things can be. -_-

  • [SOLVED] gnome-shell-extension-user-theme doesn't work.

    gnome-tweak-tool shows that I have the gnome-shell-extension-user-theme extension installed and I can turn it on and off, but it has no effect. I still can't choose a theme. The exclamation mark next to the drop down selector is still active when the extension is on. Any idea what might be wrong?
    Last edited by trusktr (2012-04-14 05:09:41)

    trusktr wrote:@alexcortes and @Unia, Is it just me or do things seem a little discombobulated now with both gconf-editor and dconf-editor in the mix? Why not just keep one *-editor? It seems like this and many other little "issues" would be easier to catch with just one *-editor. What's the point of two?
    Well yea I agree, but atm it's not going to happen. Anyway, since GS won't work with Catalyst for now I resorted to DWM and try to avoid all the gconf/dconf stuff. Works quite well

  • Gnome-shell-extension-system-monitor

    Good Morning Everyone,
    do you know how to make the above package work under GNOME? I've installed and configured lm_sensors on my ThinkPad T420 and that works quite nicely. However, installing the above package (via pacman) does not make it appear in GNOME shell. lg shows that it has been found/activated but there's no other sign of it running.
    If you know about any other extension that will allow me to display system information (temperatures, fan speeds, ...), please let me know. I've already checked extensions.gnome.org but haven't found a suitable alternative. The above package is available from there as well but is documented as only being compatible with GNOME 3.3.
    Cheers,
    Smoerrebroed

    Hello,i know that the version from extensions.gnome.org its compatible only whit gnome 3.3 but from there you have the link to github,and you can actually install it by there give it a try,it`s a nice extension
    Last edited by spark666 (2012-01-17 07:48:23)

  • Gnome-shell-extension-user-theme does not work.

    Hello everyone,
    I am having an interesting issue with using custom gnome-shell themes via the gnome-tweak-tool and user-theme extension on a fresh install today. It is showing as enabled in the shell extension list, but when trying to select a gnome-shell theme, it's grayed out and says extension is disable. All other theme options work correctly. Does anyone know what the problem might be?
    thanks in advance.

    Yes, there's a problem with the latest version of user theme package. See last post in this thread (post #75):
    https://bbs.archlinux.org/viewtopic.php?id=127459&p=3
    Basically, you need to remove user theme extension, download the one specified in that post and install that instead, using pacman -U packagename
    I just fixed that same problem on my machine less than 10 minutes ago
    Last edited by khoma (2011-11-25 11:28:13)

  • Gnome 3 Extensions

    Im completely new to gnome 3 and i have not been able to figure out how to install extensions for the gnome shell. I downloaded gnome-shell-extensions just like the wiki article for gnome said to but i do not now how to install individual extensions or how to enable them.
    Any help would be greatly appreciated.

    After you installed gnome-extensions, I think you only need to install the particular extension you like to use. Here are some extensions, already available at the Arch repository :
    Arch Repo Name Version Description Last Updated Flag Date
    any Extra gnome-shell-extension-alternate-tab 3.0.2-0.20110526.1 Alternate Tab extension for GNOME Shell 2011-05-27
    any Extra gnome-shell-extension-alternative-status-menu 3.0.2-0.20110526.1 Alternative Status Menu extension for GNOME Shell 2011-05-27
    any Extra gnome-shell-extension-auto-move-windows 3.0.2-0.20110526.1 Auto Move Windows extension for GNOME Shell 2011-05-27
    any Extra gnome-shell-extension-dock 3.0.2-0.20110526.1 Dock extension for GNOME Shell 2011-05-27
    any Extra gnome-shell-extension-drive-menu 3.0.2-0.20110526.1 Drive Menu extension for GNOME Shell 2011-05-27
    any Extra gnome-shell-extension-native-window-placement 3.0.2-0.20110526.1 Native Window Placement extension for GNOME Shell 2011-05-27
    any Extra gnome-shell-extension-places-menu 3.0.2-0.20110526.1 Places Menu extension for GNOME Shell 2011-05-27
    any Extra gnome-shell-extension-user-theme 3.0.2-0.20110526.1 User Theme extension for GNOME Shell 2011-05-27
    any Extra gnome-shell-extension-windows-navigator 3.0.2-0.20110526.1 Windows Navigator extension for GNOME Shell 2011-05-27
    any Extra gnome-shell-extensions-common 3.0.2-0.20110526.1 Extensions for GNOME Shell - common files 2011-05-27
    I hope that will help.
    Last edited by thesofty (2011-07-13 08:13:23)

  • Install Gnome 3 extensions via firefox

    I'm using Arch x64 with Gnome 3.2.1 and Firefox 8.0.1 on my laptop, the Firefox Gnome Shell Plugin is installed and activated.
    I can browse through the extensions on https://extensions.gnome.org/ and I can see the activate/deactivate switches and trigger them. After that I'm beeing asked if I really want to install this extension but after I click on the install button nothing happens. The "installed extensions" tab on the site is empty. No error message at all. Is there a log file for firefox extensions or gnome itself?
    I looked through the log files in /var/log/* but didn't found anything.
    On my desktop with the same setup of software the install process works like a charm.

    I got the package list from kahelos, and installed the following (missing ones got installed), now extensions can be installed from extensions.gnome.org.
    application's optional dependencies are not installed which package groups like gnome.
    I still don't know which package fixed/enabled the extensions feature for gnome 3.2 and firefox. I installed archlinux64 with xorg, gnome, gnome-extra, gstreamer groups. There are still too many manual minor dependency management in a fresh install.
    sudo pacman -S --needed a52dec aalib accountsservice acl aisleriot alsa-lib alsa-plugins apr apr-util aqbanking art-sharp aspell at-spi at-spi2-atk at-spi2-core atk atkmm attica attr autoconf automake avahi avogadro babl bash blas bluefish bluez boost-libs brasero brltty bzip2 ca-certificates ca-certificates-java cairo cairo-perl cairomm cantarell-fonts caribou cdparanoia cdrdao cdrkit cloog clutter clutter-gst clutter-gtk cogl colord compositeproto consolekit coreutils cpufrequtils cracklib cronie cryptsetup cups cups-pk-helper curl damageproto dasher db dbus dbus-core dbus-glib dbus-python dbus-sharp dbus-sharp-glib dconf desktop-file-utils device-mapper dhcpcd dia diffutils dirmngr djvulibre dnsutils docbook-xml docbook-xsl dotconf dri2proto dvd+rw-tools e2fsprogs eigen2 eject ekiga empathy enca enchant eog eog-plugins epiphany eventlog evince exempi exiv2 expat f-spot faad2 fakeroot farsight2 ffmpeg fftw file file-roller filesystem filezilla findutils firefox fixesproto flac flashplugin flickrnet fluidsynth folks fontconfig fontsproto foomatic-db foomatic-db-engine foomatic-filters freeglut freemind fribidi fuse gamin gawk gcalctool gconf gconf-editor gconf-sharp gconf-sharp-peditors gd gdbm gdk-pixbuf2 gdm gedit gegl gettext ghostscript giflib gjs glew glib glib-networking glib-perl glib2 glibc glibmm glproto gmime gmp gnome-applets gnome-backgrounds gnome-blog gnome-bluetooth gnome-color-manager gnome-contacts gnome-control-center gnome-desktop gnome-disk-utility gnome-documents gnome-icon-theme gnome-icon-theme-extras gnome-icon-theme-symbolic gnome-js-common gnome-keyring gnome-keyring-sharp gnome-media gnome-menus gnome-mime-data gnome-nettool gnome-online-accounts gnome-packagekit gnome-panel gnome-power-manager gnome-screensaver gnome-session gnome-settings-daemon gnome-sharp gnome-shell gnome-shell-extension-alternate-tab gnome-shell-extension-alternative-status-menu gnome-shell-extension-apps-menu gnome-shell-extension-auto-move-windows gnome-shell-extension-dock gnome-shell-extension-drive-menu gnome-shell-extension-gajim gnome-shell-extension-native-window-placement gnome-shell-extension-places-menu gnome-shell-extension-system-monitor gnome-shell-extension-user-theme gnome-shell-extension-windows-navigator gnome-shell-extension-workspace-indicator gnome-shell-extension-xrandr-indicator gnome-shell-extensions-common gnome-speech gnome-system-monitor gnome-terminal gnome-themes-standard gnome-tweak-tool gnome-user-docs gnome-utils gnome-vfs gnome-vfs-sharp gnome-video-effects gnucash gnupg gnupg2 gnutls gobject-introspection gpgme gpm grantlee graphite grep groff grub gsettings-desktop-schemas gsfonts gsm gstreamer0.10 gstreamer0.10-bad gstreamer0.10-base gstreamer0.10-base-plugins gstreamer0.10-ffmpeg gstreamer0.10-good gstreamer0.10-good-plugins gstreamer0.10-python gtk-engines gtk-sharp-2 gtk-update-icon-cache gtk-vnc gtk2 gtk2-perl gtk3 gtkhtml gtkhtml4 gtkmm3 gtksourceview3 gtkspell gucharmap guile gvfs gvfs-obexftp gvfs-smb gwenhywfar gzip heirloom-mailx hicolor-icon-theme hplip hspell hunspell hyphen iana-etc icon-naming-utils icu idnkit ilmbase imagemagick imlib2 inetutils initscripts inputproto iproute2 iputils isl iso-codes jack jasper jfsutils js json-c json-glib kbd kbproto kdeedu-kalzium kdelibs keyutils krb5 ktoblzcheck lame lapack lcms lcms2 less libao libarchive libart-lgpl libass libassuan libasyncns libatasmart libavc1394 libbonobo libbonoboui libcaca libcanberra libcanberra-pulse libcap libcap-ng libcddb libcdio libchamplain libcroco libcups libdaemon libdatrie libdbi libdbi-drivers libdbusmenu-qt libdca libdiscid libdrm libdv libdvbpsi libdvdnav libdvdread libebml libedit libevent libexif libfetch libffi libfontenc libgcrypt libgdata libgdiplus libgdu libgee libglade libglapi libgnome libgnome-data libgnome-keyring libgnome-media-profiles libgnome-sharp libgnomecanvas libgnomekbd libgnomeui libgpg-error libgphoto2 libgsf libgssglue libgtop libgweather libical libice libid3tag libidl2 libidn libiec61883 libieee1284 libimobiledevice libiodbc libjpeg-turbo libksba libldap liblouis libltdl libmad libmatroska libmng libmodplug libmpc libmpcdec libmpeg2 libmtp libmusicbrainz3 libnice libnl libnotify liboauth libofx libogg libpcap libpciaccess libpeas libpipeline libplist libpng libproxy libpst libpulse libpurple libqzeitgeist libraw1394 libreoffice-base libreoffice-calc libreoffice-common libreoffice-draw libreoffice-en-US libreoffice-gnome libreoffice-impress libreoffice-writer librsvg libsamplerate libsasl libshout libsigc++ libsm libsndfile libsocialweb libsoup libsoup-gnome libspectre libssh2 libtasn1 libtextcat libthai libtheora libtiff libtirpc libtool libtorrent-rasterbar libtracker-sparql libunique libunique3 libupnp libusb libusb-compat libva libvdpau libvisual libvorbis libvpx libwebkit libwebkit3 libwmf libwnck libwnck3 libwpd libwps libx11 libxau libxaw libxcb libxcomposite libxcursor libxdamage libxdmcp libxext libxfixes libxfont libxft libxi libxinerama libxkbfile libxklavier libxml++ libxml2 libxmu libxpm libxrandr libxrender libxres libxslt libxss libxt libxtst libxv libxvmc libxxf86vm libytnef licenses linux-api-headers linux-firmware logrotate lpsolve lsof lua lvm2 lzo2 m4 make man-db man-pages mash mcpp mdadm mesa metacity mime-types mkinitcpio mkinitcpio-busybox mlocate mobile-broadband-provider-info module-init-tools mousetweaks mozilla-common mpfr mutagen mutter mx nano nautilus nautilus-open-terminal nautilus-sendto ncurses ndesk-dbus ndesk-dbus-glib neon net-snmp net-tools netkit-bsd-finger nettle network-manager-applet networkmanager notification-daemon nspr nss ntfs-3g obex-data-server obexd-client ocaml opal openbabel opencore-amr openexr openjdk6 openjpeg openobex openslp opensp openssh openssl orbit2 orc orca p11-kit packagekit pacman pacman-mirrorlist pam pango pango-perl pangomm parted patch pciutils pcmciautils pcre pdfedit perl perl-bit-vector perl-carp-clan perl-date-calc perl-digest-hmac perl-digest-sha1 perl-encode-locale perl-file-listing perl-html-parser perl-html-tagset perl-http-cookies perl-http-daemon perl-http-date perl-http-message perl-http-negotiate perl-libwww perl-locale-gettext perl-lwp-mediatypes perl-net-dns perl-net-http perl-uri perl-www-robotrules perl-xml-parser perl-xml-simple phonon phonon-gstreamer pidgin pinentry pixman pm-quirks pm-utils polkit polkit-gnome polkit-qt poppler poppler-data poppler-glib popt ppl ppp procps psmisc pth ptlib pulseaudio pulseaudio-alsa pyatspi pycups pygobject-devel pygobject2-devel pygtk pyorbit pyqt pyrex pysmbc python python-gdata python-notify python-pycurl python-pysqlite python2 python2-bonobo python2-cairo python2-gconf python2-gnomecanvas python2-gnomevfs python2-gobject python2-gobject2 python2-gtkspell python2-libgnome python2-numpy python2-pyqt python2-sip pywebkitgtk pyxdg randrproto raptor rasqal readline recode recordproto redland redland-storage-virtuoso reiserfsprogs renderproto rest rtkit rtmpdump run-parts samba sane schroedinger scrnsaverproto sdl sdl_image seahorse sed seed sg3_utils shadow shared-desktop-ontologies shared-mime-info sip slib smbclient soprano sound-juicer sound-theme-freedesktop speech-dispatcher speex sqlite3 squashfs-tools startup-notification strigi sudo sushi sysfsutils syslinux syslog-ng system-config-printer-common system-config-printer-gnome sysvinit t1lib taglib talloc tar tcl tdb telepathy-farsight telepathy-farstream telepathy-glib telepathy-logger telepathy-mission-control texinfo thunderbird totem totem-plparser tracker tzdata udev udisks unixodbc upower usbmuxd usbutils util-linux v4l-utils vi videoproto vinagre vino virtuoso vte-common vte3 wavpack wget which whois wireless_tools wpa_supplicant wxgtk x264 xcb-proto xcb-util xdg-utils xextproto xf86-input-acecad xf86-input-aiptek xf86-input-evdev xf86-input-joystick xf86-input-keyboard xf86-input-mouse xf86-input-synaptics xf86-input-vmmouse xf86-input-void xf86vidmodeproto xfsprogs xineramaproto xinetd xkeyboard-config xorg-bdftopcf xorg-font-util xorg-font-utils xorg-fonts-alias xorg-fonts-encodings xorg-fonts-misc xorg-mkfontdir xorg-mkfontscale xorg-server xorg-server-common xorg-setxkbmap xorg-xhost xorg-xkbcomp xorg-xmodmap xorg-xrdb xorg-xset xproto xsane xsane-gimp xvidcore xz yelp yelp-xsl zenity zim zip zlib zvbi

  • Gnome Shell Dock Extension - Auto-hide?

    Hi folks,
    Does anyone know if it's possible getting the dock extension for Gnome 3 to auto-hide?
    Cheers.

    http://aur.archlinux.org/packages.php?ID=49685
    Works fine here, but I changed AUTOHIDE_ANIMATION to 0 since the animation was lagging a lot. You can also install manually from http://www.fpmurphy.com/gnome-shell-extensions/ .

Maybe you are looking for

  • Inserting data in remote database with remote procedure

    Hi, I have a problem concerning inserting data in a remote database (10g) by using a remote procedure. I call the procedure from a 11g database just by doing: begin getlocalfilecontent@remoteserv(param) commit; end; And it wouldn't insert the data in

  • Bought an album on itunes, one of the songs on the album doesn't play properly

    I just purchased the album Saints by a band called Destroy the Runner The sixth track on the album (The Aleph) plays up to about 1:45 then skips to the next song.  What should i do to fix this? how can i listen to the full song without this problem o

  • Page Footer not rendering in iPad

    Dear Experts, I have crated a simple SAPUI5 application with a xml view having a footer in the page. The footer is showing and working fine in desktop browsers, but it is not showing when I test the page using iPad. Request you to please suggest. War

  • Drivers for quad port Intel Pro1000 GT network card

    Hi folks, just trying to get this card to work on our MAC. It doesn't come with any drivers and the intel site directs you to Small Tree for their driver. This only works on Small Tree branded products, anyone solved this problem? We are running OSX1

  • Like in the apple store

    I am this is a simple thing I am just missing on how to do it. I noticed in the Apple store on one of the screen was a long oval with 3 or 4 icons that you click and you go right to that application and this wasn't the dock, it was centered on the sc