"always on top" in fullscreen mode; disable switching away

Hi,
I am trying to write a mode for emacs that will keep out as many distractions as possible.  When activated, I can't switch away from the file I'm working on.
Unfortunately, I can *easily* switch away from my fullscreen Emacs to my webbrowser or email program, and Gnome notifications appear on my screen on top of the Emacs window.
Is there a way for me to push a fullscreen Emacs window (what Emacs users call a frame) to the top of the windowing stack and DISABLE SWITCHING AWAY FROM IT, while also stopping other windows from poppint above it in the stack?  I'm using Gnome right now, so something gnome-specific would be great, as would any generic solution for X.  There is an "always on top" option for windows in gnome (I am using the default window manager, whatever it is now -- metacity?  compiz? I don't even know anymore!), but it is disabled for fullscreen windows.  that makes sense, normally, but I would like to suspend some of the computer's functionality when I'm writing. 
Also:  perhaps this deserves its own thread, but it would be nice if notification windows didn't overlay themselves on top of the window that I make this way.
Thank you!
Matt

Hi,
You say you're using gnome so the default window manager for that would be mutter. The gnome notifications can be turned off from
gnome-control-center
  I don't know if that's an acceptable solution for you. As for disabling switching to other windows, I've had look in
dconf-editor
org --> gnome --> desktop --> wm --> preferences but I don't think I can much that's relevant there. Would disabling raise-on-click deliver the desired behaviour? Otherwise, you could try seeing whether there is an extension at https://extensions.gnome.org/.
Hope you find what you're looking for
Last edited by Chazza (2014-03-15 11:47:37)

Similar Messages

  • Firefox turns off fullscreen mode after switching to another programme or desktop.

    When i alt-tab or just switch to another programme or desktop from firefox in full screen, the full screen mode is turned off.

    I also ran across another work around today:
    It looks like there was an about:config entry that was created, but is no longer in the current build. It may be possible to create a new entry and add it back:
    [http://www.shdon.com/blog/2012/11/24/browser-tip-keep-video-full-screen-with-multiple-monitors]
    Made via: [https://bugzilla.mozilla.org/show_bug.cgi?id=724554 bug 724554]
    Please be warned that this will change the default of your installation, but I do not know how this will affect other functionalities of the browser.

  • Temporarily show tab bar upon switching tabs with the keyboard in fullscreen mode

    I use Firefox in fullscreen mode and switch tabs with Ctrl + PgUp/PgDn. I need to peek at the tab bar when I switch tabs, to avoid searching for the desired tab with multiple shortcut presses.
    Is there a way to temporarily show the tab bar when I switch tabs with the keyboard shortcut? I want the tab bar to hide again after, say, 2 seconds of no tab switching.

    You can try to set the focus to the location bar with Ctrl+L before switching the tabs to make the toolbar and tab bar appear.

  • How to prevent apps from going weird in Fullscreen mode?

    Hi,
    since I'm using Mavericks from time to time some apps have problems when running in fullscreen mode (recently Finder had also the same problem without fullscreen). I'm getting an application window like shown in the screenshot below. The only way I've found to fix this is to restart the application - with Finder I even had to do a killall Finder on the Terminal.
    Has anyone experienced similar problems and maybe a solution for it?
    Best regards
    Achim
    PS: I'm getting it on both my MacBooks both with single screen and with external display with sync off

    Here's another set of screenshots: I had Mail.app in fullscreen mode and switched to the login window - after re-login the app looked like in the screenshot of my first post. I disabled fullscreen mode (the blue icon in the menu bar on the upper right) and it looked like this:
    I can drag the window down (like in the screenshot below) but when I release the mouse button it snaps on the top of the desktop (like screenshot above). I cannot rezise etc. the window.
    Really weird isn't it?
    Best regards
    Achim

  • I switched to fullscreen mode and now I can't find the app tab to put it back to normal?

    I wanted to see what fullscreen mode in the new beta looked like and now I cannot find the app tab with the print, history, bookmarks, options, etc. It used to be up in the left top corner, and said "Firefox" (it was orange). I don't like this style of screen, now that I've seen it, and would like to go back to normal, and assume I need to uncheck it in that app tab. The regular Shift+F11 (or F10, or F12, whatever it is - I just keep hitting buttons till it works) that works for most programs on PC does not work.

    '''F11''' toggles the FullScreen mode, as it always has in Firefox - nothing new there.
    New in Firefox 4.0 is that orange Firefox button, which appears when the user hides the Menu bar (which was a feature that was also available in Firefox 3.6, but without the orange button). The orange Firefox button has a small menu that appears when you click on that button, and if you need to access a menu item that doesn't appear there, you can hit the '''Alt''' key to reveal the complete Menu bar temporarily. Or you can right-click a Toolbar and click on the Menu bar to have it showing all the time.

  • App switching in fullscreen mode: Losing Focus

    I have my mac running Mountain Lion (Ver 10.8.2) and have noticed that when switching between applications when fullscreen mode is involved that the application I am switching to loses focus.
    Scenarios:
    Switching from fullscreen app -> fullscreen app
    Switching from fullscreen app -> not fullscreen app
    Switching from not fullscreen app -> fullscreen app
    For all of the above scenarios when the switch is completed, the app I am switching to loses focus, but the application bar still shows the correct application name (so it doesn't just switch to Finder). This happens regardless of if I use a multitouch gesture or CMD+TAB to do the switch. Also, when this happens "CMD + ~" doesn't switch between windows of the application switched to.
    I would expect these scenarios to work the same as switching between regular applications where the one you switch to is in focus after the switch. Is this a bug with the fullscreen mode? or is there a setting I missed that can fix it? or is it a "feature"?
    I thank you for any help you can provide - this irritating bug makes it impossible for me to use fullscreen mode for my purposes.

    That was the problem! I had Live Wallpaper installed and running, so I guess I won't use that until there is an update to fix te problem.
    Thanks!

  • How to switch fullscreen mode with normal mode in OSMF with mediacontainer and mediaplayer?

    i use OSMF to make a video player ,use the mediacontainer and mediaplayer ,all works right but to switch from normal to fullscreen mode ,i don't know how ?
    because my videoplayer can be resized with some ratio ect 50%.
    anyone do something similar to this? any help?
    thanks very much!

    I did this:
    public function toggleFullScreen( event:Event=null ):void
    if( this.stage.displayState == StageDisplayState.NORMAL )
    // set full screen display
    this.stage.scaleMode = StageScaleMode.NO_SCALE;
    $playerInstance.width = $stage.fullScreenWidth;
    $playerInstance.height = $stage.fullScreenHeight;
    bg.height = $stage.fullScreenHeight;
    $playerInstance.addChild(controlBar2);
    LayoutMetadata($playerInstance.media.getMetadata(LayoutMetadata.LAYOUT_NAMESPACE)).scaleMo de= ScaleMode.ZOOM;
    var resultRect:Rectangle = new Rectangle(0, 0, $stage.fullScreenWidth, $stage.fullScreenHeight);
    stage.fullScreenSourceRect = resultRect;
    this.stage.displayState = StageDisplayState.FULL_SCREEN;
    else
    $playerInstance.width = 600;
    $playerInstance.height = 400;
    $playerInstance.mediaContainer.width = 600;
    $playerInstance.mediaContainer.height = 400;
    LayoutMetadata($playerInstance.media.getMetadata(LayoutMetadata.LAYOUT_NAMESPACE)).scaleMo de= ScaleMode.LETTERBOX;
    bg.height = 400;
    // set normal display
    stage.fullScreenSourceRect = null;
    this.stage.scaleMode = StageScaleMode.NO_SCALE;
    this.stage.displayState = StageDisplayState.NORMAL;

  • Windows stuck in always on top mode

    I am not sure why but many of my windows like to stay always on top. It gets frustrating when I have something running full screen, and I cant get to the other window or application because the full screen application wont let anything come on top. This
    also happens with my chrome windows. This is where I first noticed this issue. I tend to keep dozens of tabs open and keep them organised in specific windows. But when I try to drag one to another monitor overtop another chrome window, or bring it to the front
    it stays behind the other window. It seems to be somewhat random as well as some windows will allow others to come to the front, but generally they will not. I don't know if there is a shortcut or something that I maybe hit to change this setting or what.
    Any suggestions.

    Hi,
    "But when I try to drag one to another monitor overtop another chrome window, or bring it to the front it stays behind the other window. "
    Are you using dual (or multiple) monitors? Are you able to show other windows by click the follow options (right click the taskbar):
    Pleaes also note that some third party programs can make certain windows stays on top, please check if this is the cause.
    Yolanda Zhu
    TechNet Community Support

  • YouTube fullscreen mode lost when switch to another window

    How can I save fullscreen mode in YouTube videos after swith to another window?

    Hi Serializable,
    Currently this is not possible. There is theater view however if you click on the theater button of Youtube.

  • Exclusive Fullscreen mode

    Hi
    Whilst i can switch my windows into fullscreen mode via graphicdevice that doesn't make Windows, so for platform inter exchangability, i'm emulating a fullscreen setting, by extending the window beyond the bounds of the screen, which works grand.
    Regardless of GraphicsDevice way or the (dodgy) Windows way, i can't get something that hides the kicker in KDE (3.1 or 3.0.5 or 3.0.3) or the taskbar.
    So my question how do i get the OS (or whatever) to return a true on GraphicsEnvironment's .isFullScreenSupported()?
    OR
    How do I get something like an "Always on top" setting, which would (in theory) go over the top of the taskbar / kicker.
    If more detail is required on what the problem is, grab the code from http://naiv.sourceforge.net , and check it out.
    The code in question is in NAIV_Viewer.java at setupFullscreenSupport().
    Any help would be appreachiated.
    Christian chakkerz Unger

    Check out the Java Tutorial on Full Screen Exclusive mode in the tutorials homepage. You will need JDK1.4 for this.
    As for the Always on top code, I have some code that a kind person named Mitch Goldstein posted here in the forum. You can email him for this code but ask someone in this forum for his email address as I dont have it.
    Alternatively, look at:
    http://forum.java.sun.com/thread.jsp?forum=25&thread=230042
    Hope this helps
    Riz

  • FF is "always on top" occasionally

    For the past coupla iterations of FF I've been having this occasional problem: FF remains "always on top" of my windows, even if others are highlighted, even over my Win taskbar, which is set to auto-hide and locked. I usually drop my cursor down to the bottom of the page to pop up the taskbar, but now I have to hit the winkey. Once I get FF minimized, things are fine. If this occurs I close all tabs, flush the cache, then reboot FF; problem fixed.
    I have FF 22.0 on an HP p6720f running under Win7 Home Premium x64.

    I've seen previous support questions with similar problems where switching into fullscreen mode and then out again would fix the problem. Maybe try that next time as well.
    If none of this solves the problem then I would try troubleshooting in [[Troubleshoot Firefox issues using Safe Mode|Safe Mode]] and failing that do a [[Reset Firefox – easily fix most problems | Reset]].
    I hope that helps.

  • WHY IS FIREFOX ALWAYS ON TOP. WHY THIS CHANGE?

    I was able to open a file over top of Firefox, and could switch back and forth between them. Now it is "always on top" and must be minimized to get to other programs (example word)

    Just in case you are in full screen mode, try using the F11 key to switch to normal mode. (If that switches to full screen mode, use F11 to switch back.)
    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    <b> To Enable SafeMode </b>
    *You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    *''Once you get the pop-up, just select "'Start in Safe Mode"''
    If it works in Safe Mode and in normal mode with all extensions (Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: "Firefox > Quit Firefox"; Linux: "Firefox/File > Quit")
    * https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Automatically exit from fullscreen mode when silveright player section or any buttom from control strip click in fullscreen mode.

    I have implement an full screen functionality using javascript fullscript api to show page contain in full screen mode and that page have three type of content
    a.)smf player xap
    b.)dfp ads
    c.)social media plugin
    that full screen functionality is work perfectly in chrome browser but when I use the mozila browser it create problem during fullscreen mode when any user click on any area of smf player.
    For example if i click on fulls screen button that page easily open in full screen mode but if user click on any part contain by the xap contain it automatically exit from full screen mode like if any user click on play button during full scree mode it automatically exit from full screen.

    In order to uninstall a possibly unwanted extension, please do the following:
    #From the Firefox window click the Firefox button at the top left and select ''Add-ons'', or, if the Firefox button is not shown, click the ''Tools'' menu and click ''Add-ons''.
    #Once the Add-on Manager has opened in a new tab, click the ''Extensions'' button on the left side of the window.
    #You should now see a list of your installed extensions on the right side together with buttons on the right side of each extension.
    #To remove an extension from Firefox, simply click the ''Remove'' button. You should see a message that informs you about the successful removal of the add-on.
    #Note that some add-ons require a Firefox restart to be removed completely. To perform a Firefox restart after the add-on removal, click the ''Restart now'' link in the message.
    You can find further information about uninstalling extensions in the following articles:
    [[Disable or remove Add-ons]]
    [[Remove a toolbar that has taken over your Firefox search or home page]]

  • Runnng external swf Actionscript while in fullscreen mode

    I am using Flash 9.0 (CS3 Pro). I am coding in Actionscript
    3.0
    I have two swf files, both interactive. During playback of
    the, a mouse event launches the second. I also want the mouse event
    to trigger a switch to fullscreen mode. The second swf is
    non-linear and requires user input to jump to the appropriate frame
    of the timeline. Everything tests and runs perfectly during
    standard screen mode but whenever I try to load and play the
    external swf file in fullscreen mode, Flash recognizes the
    actionscript built into the original SWF but ignores all of the
    Actionscript (this.stop(), this.gotoAndPlay(), etc.) embedded in
    the second (external) swf file.
    How can I get external swf files to load with their scripted
    functionality in fullscreen mode?
    Thanks for the help.
    Aaron
    The code I am using is:
    // --- this is the code contained in the first swf file
    // function to launch second SWF file
    function movieLaunch(event:MouseEvent):void
    // Sets display mode to fullscreen. With this line present,
    Flash does not look at any Actionscript in ip.swf
    // If I comment the below line out, the second SWF plays
    correctly and has full functionality
    stage.displayState = "fullScreen";
    // load and launch second movie (ip.swf) which is located in
    the same directory
    var request:URLRequest = new URLRequest("ip.swf");
    var loader:Loader = new Loader();
    loader.load(request);
    addChild(loader);
    // Sets the listener for the button that will launch the
    second movie.
    launchMovieButton.addEventListener(MouseEvent.CLICK,
    movieLaunch);
    Text

    The keyboard is disabled in fullscreen mode. This may be
    causing the problem?

  • Flash SA Projector crashes when in fullscreen mode

    I've created a Flash SA Projector, it's a slideshow of sorts. It is on a timer and changes "slides" every 12 secs. It runs great inf Fullscreen Mode and normal mode. It is self running and I've let it run by itself for several hours. However, it crashes a few different cases and I'd like to know if any one can tell me why. This is happening on a new Mac Mini (Mac OS 10.7.2) - using Flash Player 10.3.183.11
    Case 1: It's running in fullscreen mode and the computer goes to sleep. I wake up the computer and see the error message: "Flash Player quit unexpectedly".
    Case 2: It's running in fullscreen mode and I switch applications (using Alt-Tab) - Crash! Does it when I switch to Finder or Safari. However, if I pause my application (it's a self running "slideshow"), so the timer is not running and no animations are happening, when I switch to a different application, it simple pops out of fullscreen mode and doesn't crash.
    Is this a problem/bug with Flash Player? Anyone know a solution to this issue?
    Thanks

    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration

Maybe you are looking for

  • Row level security at universe design level

    Hi, I am creating a Universe layer on top of non SAP OLAP cube ( from MS Analysis Services 2005 ) . My concern is that can we maintain the row level or data level security at universe design level or if i am using that universe in creation of WEBI re

  • Creative MediaSource Go! starting up with Windows

    I don't want to have MediaSource Go! loading automatically with Windows every time I logon the system. Is there a way to disable this behavior? Anyone know it's

  • Why does Vine Server not start with this script and work with the other?

    I have the preferences of Vine Server set to start/run automatically when opening the programme. If I double click the icon it works. Opens and starts. If I use activate application "Vine Server" it opens but does not start. If I use: tell applicatio

  • Acrobat Pro and Reader fighting for Safari frameworks folder...

    We manage hundreds of Macs of which most are at 10.4.8. We have both Acrobat Pro and Reader 7.0.8 installed on all Macs. Sometime within the last few weeks something has changed on our systems (eg: upgrading from something under 10.4.8 to 10.4.8) tha

  • GOP / UEFI Vbios Request N660 TF 2GD5/OC

    Hello, I would like to request the updated VBios for the N660 TF 2GD5/OC S/N:602-V287-050B1301121706 I have a problem with a fan, which is away from the chip, at ignition computer spin, al al fit and only after the AB lift over 70%. Sorry for the bad