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. -_-

Similar Messages

  • [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)

  • [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 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)

  • 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?

  • 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...

  • 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-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.

  • [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

  • In the info bar at the bottom of the iphoto window, why is the number of items different from the total

    In the info bar at the bottom of the iphoto screen, why is the number of items different from the total?

    What version of iPhoto and system are you running? What mode are you in, i.e. Events, Photos?
    If it's the Photos mode the number at the bottom will represent the number of photos displayed in that mode or the number of photos selected in that mode. The number will match the number next to the photos mode only when there are no photos in that mode that are selected. 
    If you click on the Events icon and then back on the photos icon the numbers should match.
    OT

  • Can anybody help me in finding the reasons why the time of email received are different from the one on my macbook which time is correct

    Hi
    Can anyone help me in finding the reason why the date on e=mail reced is different from the one on my MacBook eventhough it is correct
    Thanks

    Try this...
    Triple click anywhere in the line below to select it and press Ctrl+C to copy it.
    cmd /k netsh winsock reset
    Press the WinLogoKey+R to open the run dialog, then Ctrl+V to paste, then press enter/return.
    You should get something similar to this:
    Reboot the computer and the problem should be resolved.
    If it doesn't work then perhaps a full tear down and rebuild of iTunes will fix things. See Troubleshooting issues with iTunes for Windows updates for details.
    tt2

  • Why does Photoshop display colors differently from the other applications even in sRGB mode ?

    Hello all !
    Here is my problem :
    Photoshop is set to use sRGB workspace (in edit/colors.../workspace/RVB).
    If I understand correctly this is how all native windows applications work.
    This means Photoshop and the other applications should display the same colors on a file with a sRGB profile.
    Now this is the case until I calibrate my monitor.
    When I do, Photoshop colors become different from the other applications (irfanview, explorer, browsers...).
    The only way I found to let everything display the same colors is to set Photoshop to use Proofing/RVB Monitor.
    What upsets me even more is that Photoshop colors look "better" to me (dark grays seem to dark to me in the other applications.)
    I have read that this is because Photoshop takes the new profile into account and others applications do not. But I don't think this is relevant here because everything is in sRGB so the only profile is my monitor's and I think calibration is handled globally by windows : everything (including browsers, explorer, and Photoshop) changes color if I choose to apply the monitor's profile or not with windows color management tool ("use my parameters for this device").
    Here is my system configuration :
    - Photoshop CS4 (11.0.2)
    - Windows 7 64 bits
    - HP ZR2440W and DELL 2209WA (these are not wide gamut screens)
    I have spent two days trying to figure the logics behind this and really am upset. Any help would be greatly appreciated. Don't hesitate to ask me if there is something that is unclear or some information I forgot to mention.
    Thanks in advance,
    Yannick

    That sounds like an invitation to continue to talk about the issue.  Fair enough.
    I'm not sure where you're getting "insecurity"...  I am just trying to help you help others more effectively.
    I invite you to re-read just the first sentence of what you wrote very carefully, putting yourself in the shoes of someone struggling with both the terminology and the concepts:
    Photoshop (CMS) reads an embedded ICC profile and CONVERTS it to the custom monitor profile for a theoretical 'true color' display
    Think about what "Photoshop (CMS)" might mean to a person who doesn't know the acronym might stand for "Color Management System" (which is I assume what you meant).  Adobe themselves don't call it "CMS", they use the acronym "CMM" (Color Management Module).  The term "CMS" is used in the computer industry for about a dozen different things.
    While a color profile might have been embedded in an image file before it was opened by Photoshop, Photoshop works on documents.  A profile is not "embedded" in a document, it is maintained by Photoshop with the document and describes the color values in the document.  If Photoshop opens a document without an embedded profile, depending on settings and user choices it might assign a profile or it might even operate on the document without color-management.  Oversimplification doesn't help people when they're trying to learn new things unless it's described as such, for example, "This is a bit of an oversimplification..." or "Generally speaking..."
    Not every monitor profile is a "custom monitor profile".  Quite often a standard profile (e.g., sRGB IEC61966-2.1) is associated with a monitor by the operating system as a default, or a factory profile is installed by a driver package or system update.  Your use of the term "custom" is a bit ambiguous and could be read as implying the creation of a profile using a calibration and profiling device specific to the particular monitor.
    Photoshop's color management code does not convert an embedded ICC profile at all (read carefully what you wrote).  As I said, it transforms color values.  That was the key error in your description that prompted me to comment.
    If ever there is a time to pick words carefully, it's in a color-management discussion.
    -Noel

  • Font of alpha list bullets is different from the bullet text

    TCS3/FM10/RH9
    Windows XP
    I have several alpha lists and the font of the alpha bullet is different from the font of the alpha bullet.  How do I change this in CSS?
    Thanks in advance.

    William,
    Rather than make the change in the project, I would rather make the change in the stylesheet.  I was aware of the multiple stylesheets and use the old fmstyles.css to govern the project.
    How would I make this change in the stylesheet?
    Thank you so much for your help.
    Mary

  • Is a Java Virtual Machine different from the Java Runtime Environment?

    Ok I have heard people say they are running a java virtual machine, but how is that different from the Java Runtime Environment you install on any computer to run Java? Also if it is different what is the purpose of it and using commands like this:
    -Xms512m -Xmx1024m -XX:MaxPermSize=256m -XX:+UseParNewGC -XX:+UseConcMarkSweepGC

    I've noticed lately that at certain web pages a window
    titled "Install on Demand" pops up and says that I
    need to download "Java virtual machine." When I press
    on the download button another window pops up that
    says it was unable to download and that I should try
    again or go to Windows Update to install the
    component. When I do the Windows Update, at the
    Windows Update website it states that there are no
    updates available for my computer at this time. What
    should I do?
    Thank you in advance.I am having the same problem. I downloaded the JVM download from the sun homepage... and I still can't use digichat applet.. anyone have a fix?
    >
    >

  • I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date is created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date  created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    The Finder reports File information. The date and time of the photo are in the Photo's Exif metadata. The Finder has no awareness of this. All photos apps on any system do.
    Regards
    TD

Maybe you are looking for

  • Boot Camp 4.0 - Atikmdag.sys crash

    Hi all, I've got a BIG problem with Boot Camp 4.0 ATI driver. I use a mac mini mid-2011 plugged to a Iiyama PLB2403WS monitor with a HDMI cable. That screen can display 1920x1200 mode. When I boot the system on Mac OS X Lion, it works perfectly. Afte

  • ISA B2B Generic SAP R/3 Extensions

    Hi All, I am just going through the ISA tutorials as described in the ISA Extension Guide. Unfortunately there seems to be many problems with the Extensions Demo 5 which could have partly been solved but right now it stucks at Extension Demo5 Approac

  • BLOB content download link on apex report

    Hi Guys, I have a simple form where user can attach file and save the records. I iterate through wwv_flow_files and get the file and save it to a custom table which has BLOB column. On another report page i display uploaded file details. What i need

  • I accidentally deleted the actual folders in my history "library." I need to get them back/make new ones. How can I do this?

    I have searched support but only find answers like "wait a few days and the folders will return." I need all the standard folders back like "today", "yesterday", "last 7 days", etc. Thank you.

  • PhotoshopElementsAnalyzer.exe Running in Background

    I'm new to Premier Elements 8.0 and was experimenting with my first video edits.  I closed the program down, but the PhotoshopElementsAnalyzer.exe continues to run in the background and it is consuming quite a bit of system resources. Q1.  Is this pr