Force alt + tab to switch only on current workspace in GNOME shellForce Alt + Tab switcher to display...

Why is working on the same position for more than 15 years not a red flag?

What is the difference between rolling more dice versus fewer dice?

What are "industrial chops"?

Can a hotel cancel a confirmed reservation?

False written accusations not made public - is there law to cover this?

What to look for when criticizing poetry?

Quickly creating a sparse array

Why did Democrats in the Senate oppose the Born-Alive Abortion Survivors Protection Act (2019 S.130)?

Nested word series [humans only]

Is a new Boolean field better than a null reference when a value can be meaningfully absent?

How much mayhem could I cause as a sentient fish?

How do I append a character to the end of every line in an Excel cell?

Am I a Rude Number?

A starship is travelling at 0.9c and collides with a small rock. Will it leave a clean hole through, or will more happen?

A curious equality of integrals involving the prime counting function?

Why did the villain in the first Men in Black movie care about Earth's Cockroaches?

SET NOCOUNT Error in handling SQL call after upgrade

Consequences of lack of rigour

What is the purpose of easy combat scenarios that don't need resource expenditure?

Is boss over stepping boundary/micromanaging?

Positioning node within rectangle Tikz

Why would space fleets be aligned?

Odd 74HCT1G125 behaviour

What are the exceptions to Natural Selection?



Force alt + tab to switch only on current workspace in GNOME shell


Force Alt + Tab switcher to display applications from active workspaceForce Alt+Tab show only active desktop apps in gnome-shellHow to switch between applications in current workspace only in gnome-shell?How to make Ubuntu 18.04 (GNOME) workspace prohibit alt-tab to windows on other workspacesHow separate windows per workspace ubuntu - 18.04?Switch between applications with multiple workspacesSeparate workspaces in Ubuntu 18.04How can I configure `Alt-Tab` to show only windows from the current workspace?Ubuntu 17.10 - ALT + Tab swaps between workspacesSwitch between windows within workspace: difference between 16.04 and 18.04?Force Alt+Tab show only active desktop apps in gnome-shellHow do I revert Alt-tab behavior to switch between windows on the current workspace?How can I set that Alt-TAB to switch windows only on the current workspace?Why do you have to press ALT+` twice to switch windows within an application?How do I easily switch between windows rather than applications with ALT+TAB in GNOME?How do I make alt + tab cycle through individual windows only in current workspace in GNOME 3?Alt + Tab only toggles between two recent windows on 16.04 in MATEChange the alt-tab behaviorGNOME : Ubuntu 18.04 ALT+TAB delayUbuntu 18.04 alt+shift+tab does not switch apps backwards













118















I am looking for a clean and fast method to force GNOME in Ubuntu 14.04 to switch between active apps only on the current workspace when pressing the shortcut alt + tab.










share|improve this question





























    118















    I am looking for a clean and fast method to force GNOME in Ubuntu 14.04 to switch between active apps only on the current workspace when pressing the shortcut alt + tab.










    share|improve this question



























      118












      118








      118


      43






      I am looking for a clean and fast method to force GNOME in Ubuntu 14.04 to switch between active apps only on the current workspace when pressing the shortcut alt + tab.










      share|improve this question
















      I am looking for a clean and fast method to force GNOME in Ubuntu 14.04 to switch between active apps only on the current workspace when pressing the shortcut alt + tab.







      shortcut-keys workspaces gnome-shell application-switcher






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 13 '18 at 0:33









      pomsky

      31.4k1195128




      31.4k1195128










      asked May 12 '14 at 18:53









      daniel451daniel451

      3,21851623




      3,21851623






















          7 Answers
          7






          active

          oldest

          votes


















          149














          Here is the solution I came up with:



          Very fast & easy, without any installations/extensions:





          1. Install dconf-editor (already installed on current debian/ubuntu distributions):



            sudo apt-get install dconf-editor


          2. Open dconf-editor (from the Dash or a Terminal)


          3. Navigate to: org -> gnome -> shell -> app-switcher


          4. Set "current-workspace-only" to true



            screenshot




          ..and you're done :)






          share|improve this answer





















          • 7





            Wish Gnome would just put this in their Settings applet

            – leo-the-manic
            Dec 28 '16 at 19:29











          • Please add @austinmarton answer too, since while this is more generic, there's a gnome way that requires no extra installs.

            – Mihail Malostanidis
            Oct 7 '17 at 14:54






          • 4





            I've added feature issue to Gnome TWEAK project gitlab.gnome.org/GNOME/gnome-tweaks/issues/123

            – sobi3ch
            Feb 15 '18 at 11:22











          • Wish this will become the default for future release!

            – samb
            Mar 10 '18 at 17:58











          • This should be on Gnome Tweak! Agree @sobi3ch

            – rtindru
            May 7 '18 at 6:19



















          132














          Simply:



          gsettings set org.gnome.shell.app-switcher current-workspace-only true





          share|improve this answer





















          • 2





            super fast, no extra software necessary and does exactly what was asked for! +1

            – Jamie-505
            Mar 3 '17 at 10:52






          • 2





            ...and for me in 17.10.

            – colan
            Oct 25 '17 at 15:44






          • 2





            It worked for me too on ubuntu 17.10, and this is the best answer

            – Marco
            Oct 26 '17 at 19:22






          • 12





            It's working on Ubuntu 18.04. It's straightforward and you don't need to install anything

            – Andrea Tulimiero
            Apr 30 '18 at 20:07






          • 5





            Yup, works on Ubuntu 18.04!

            – Henrique Ferrolho
            May 2 '18 at 11:34



















          15














          As an alternative to installing dconf-editor and having to fiddle around with your mouse so much, you can also do this from terminal.



          To create the current-workspace-only value:



          dconf write /org/gnome/shell/app-switcher/current-workspace-only 'true'


          To erase it, going back to default settings:



          dconf reset /org/gnome/shell/app-switcher/current-workspace-only


          I would like dconf-editor more if it could search through paths, properties, and values.






          share|improve this answer





















          • 1





            the (later) answer using gsettings is just a higher-level api that also sets the dconf values (and would probably be in general preferred over directly accessing dconf)

            – michael
            Jan 1 '18 at 7:56



















          8














          Seems to be fixed with



          gsettings set org.gnome.shell.window-switcher current-workspace-only true
          gsettings set org.gnome.shell.app-switcher current-workspace-only true





          share|improve this answer
























          • Looks like I need only the first one (.window-switcher)

            – kerner1000
            Jan 5 '18 at 17:52











          • This did the job. It only shows the apps currently in the workspace and, when an app has two instance each in a different workspace when pressing Alt+Tab it prevents from showing both of them. But you have to use both the commands in this answer. Awesome, thank you!

            – juliangonzalez
            Oct 1 '18 at 15:38





















          4














          An alternative for people who want to tab through open windows on current workspace but also want to be able to tab through all open apps (on any workspace) this can be achieved by changing the keyboard shortcuts.



          Under Settings > Devices > Keyboard (on Ubuntu 17.10):




          • Switch Windows: Alt + Tab

          • Switch Applications: Super + Tab






          share|improve this answer
























          • That's tricky - Alt+Tab changes windows, even when changing the keyboard shortcuts. Is there a way to fix that?

            – Rick-777
            Nov 29 '17 at 14:49











          • Yes, Alt+Tab will show the windows open on the current workspace whereas Super+Tab will show all open programs (on any workspace). What do you want to achieve, that Alt+Tab shows open programs on the current workspace instead of open windows?

            – Clauds
            Nov 30 '17 at 10:19











          • Hi ! I'm trying to set this specific behavior, but I don't seem to be able to. Both commands always behave the same. I tried gsettings current-workspace-only for window and app switcher with no luck either. Any idea? Thanks :)

            – Biggybi
            Apr 15 '18 at 6:16













          • I checked my gsettings and I have org.gnome.shell.app-switcher current-workspace-only false and org.gnome.shell.window-switcher current-workspace-only true

            – Clauds
            Apr 15 '18 at 9:59











          • This does not answer the question but is a great tip nonetheless.

            – crafter
            Aug 7 '18 at 22:32



















          2














          AlternateTab



          If you also wan't to ungroup applications on switcher you can add officially supported AlternateTab extension.



          screenshot



          Moreover:




          Actually, Ubuntu is going to have the Alternatetab as default on Alt+tab in the upcoming version of Ubuntu (19.04), while the current default app switcher will remain on Super+tab







          share|improve this answer

































            1














            The other solutions here did not work for me on Ubuntu 18.04.1, but the Alt Tab Workspace extension worked.






            share|improve this answer






















              protected by N0rbert Sep 20 '18 at 10:34



              Thank you for your interest in this question.
              Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



              Would you like to answer one of these unanswered questions instead?














              7 Answers
              7






              active

              oldest

              votes








              7 Answers
              7






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              149














              Here is the solution I came up with:



              Very fast & easy, without any installations/extensions:





              1. Install dconf-editor (already installed on current debian/ubuntu distributions):



                sudo apt-get install dconf-editor


              2. Open dconf-editor (from the Dash or a Terminal)


              3. Navigate to: org -> gnome -> shell -> app-switcher


              4. Set "current-workspace-only" to true



                screenshot




              ..and you're done :)






              share|improve this answer





















              • 7





                Wish Gnome would just put this in their Settings applet

                – leo-the-manic
                Dec 28 '16 at 19:29











              • Please add @austinmarton answer too, since while this is more generic, there's a gnome way that requires no extra installs.

                – Mihail Malostanidis
                Oct 7 '17 at 14:54






              • 4





                I've added feature issue to Gnome TWEAK project gitlab.gnome.org/GNOME/gnome-tweaks/issues/123

                – sobi3ch
                Feb 15 '18 at 11:22











              • Wish this will become the default for future release!

                – samb
                Mar 10 '18 at 17:58











              • This should be on Gnome Tweak! Agree @sobi3ch

                – rtindru
                May 7 '18 at 6:19
















              149














              Here is the solution I came up with:



              Very fast & easy, without any installations/extensions:





              1. Install dconf-editor (already installed on current debian/ubuntu distributions):



                sudo apt-get install dconf-editor


              2. Open dconf-editor (from the Dash or a Terminal)


              3. Navigate to: org -> gnome -> shell -> app-switcher


              4. Set "current-workspace-only" to true



                screenshot




              ..and you're done :)






              share|improve this answer





















              • 7





                Wish Gnome would just put this in their Settings applet

                – leo-the-manic
                Dec 28 '16 at 19:29











              • Please add @austinmarton answer too, since while this is more generic, there's a gnome way that requires no extra installs.

                – Mihail Malostanidis
                Oct 7 '17 at 14:54






              • 4





                I've added feature issue to Gnome TWEAK project gitlab.gnome.org/GNOME/gnome-tweaks/issues/123

                – sobi3ch
                Feb 15 '18 at 11:22











              • Wish this will become the default for future release!

                – samb
                Mar 10 '18 at 17:58











              • This should be on Gnome Tweak! Agree @sobi3ch

                – rtindru
                May 7 '18 at 6:19














              149












              149








              149







              Here is the solution I came up with:



              Very fast & easy, without any installations/extensions:





              1. Install dconf-editor (already installed on current debian/ubuntu distributions):



                sudo apt-get install dconf-editor


              2. Open dconf-editor (from the Dash or a Terminal)


              3. Navigate to: org -> gnome -> shell -> app-switcher


              4. Set "current-workspace-only" to true



                screenshot




              ..and you're done :)






              share|improve this answer















              Here is the solution I came up with:



              Very fast & easy, without any installations/extensions:





              1. Install dconf-editor (already installed on current debian/ubuntu distributions):



                sudo apt-get install dconf-editor


              2. Open dconf-editor (from the Dash or a Terminal)


              3. Navigate to: org -> gnome -> shell -> app-switcher


              4. Set "current-workspace-only" to true



                screenshot




              ..and you're done :)







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Feb 9 at 16:41









              pomsky

              31.4k1195128




              31.4k1195128










              answered May 12 '14 at 18:53









              daniel451daniel451

              3,21851623




              3,21851623








              • 7





                Wish Gnome would just put this in their Settings applet

                – leo-the-manic
                Dec 28 '16 at 19:29











              • Please add @austinmarton answer too, since while this is more generic, there's a gnome way that requires no extra installs.

                – Mihail Malostanidis
                Oct 7 '17 at 14:54






              • 4





                I've added feature issue to Gnome TWEAK project gitlab.gnome.org/GNOME/gnome-tweaks/issues/123

                – sobi3ch
                Feb 15 '18 at 11:22











              • Wish this will become the default for future release!

                – samb
                Mar 10 '18 at 17:58











              • This should be on Gnome Tweak! Agree @sobi3ch

                – rtindru
                May 7 '18 at 6:19














              • 7





                Wish Gnome would just put this in their Settings applet

                – leo-the-manic
                Dec 28 '16 at 19:29











              • Please add @austinmarton answer too, since while this is more generic, there's a gnome way that requires no extra installs.

                – Mihail Malostanidis
                Oct 7 '17 at 14:54






              • 4





                I've added feature issue to Gnome TWEAK project gitlab.gnome.org/GNOME/gnome-tweaks/issues/123

                – sobi3ch
                Feb 15 '18 at 11:22











              • Wish this will become the default for future release!

                – samb
                Mar 10 '18 at 17:58











              • This should be on Gnome Tweak! Agree @sobi3ch

                – rtindru
                May 7 '18 at 6:19








              7




              7





              Wish Gnome would just put this in their Settings applet

              – leo-the-manic
              Dec 28 '16 at 19:29





              Wish Gnome would just put this in their Settings applet

              – leo-the-manic
              Dec 28 '16 at 19:29













              Please add @austinmarton answer too, since while this is more generic, there's a gnome way that requires no extra installs.

              – Mihail Malostanidis
              Oct 7 '17 at 14:54





              Please add @austinmarton answer too, since while this is more generic, there's a gnome way that requires no extra installs.

              – Mihail Malostanidis
              Oct 7 '17 at 14:54




              4




              4





              I've added feature issue to Gnome TWEAK project gitlab.gnome.org/GNOME/gnome-tweaks/issues/123

              – sobi3ch
              Feb 15 '18 at 11:22





              I've added feature issue to Gnome TWEAK project gitlab.gnome.org/GNOME/gnome-tweaks/issues/123

              – sobi3ch
              Feb 15 '18 at 11:22













              Wish this will become the default for future release!

              – samb
              Mar 10 '18 at 17:58





              Wish this will become the default for future release!

              – samb
              Mar 10 '18 at 17:58













              This should be on Gnome Tweak! Agree @sobi3ch

              – rtindru
              May 7 '18 at 6:19





              This should be on Gnome Tweak! Agree @sobi3ch

              – rtindru
              May 7 '18 at 6:19













              132














              Simply:



              gsettings set org.gnome.shell.app-switcher current-workspace-only true





              share|improve this answer





















              • 2





                super fast, no extra software necessary and does exactly what was asked for! +1

                – Jamie-505
                Mar 3 '17 at 10:52






              • 2





                ...and for me in 17.10.

                – colan
                Oct 25 '17 at 15:44






              • 2





                It worked for me too on ubuntu 17.10, and this is the best answer

                – Marco
                Oct 26 '17 at 19:22






              • 12





                It's working on Ubuntu 18.04. It's straightforward and you don't need to install anything

                – Andrea Tulimiero
                Apr 30 '18 at 20:07






              • 5





                Yup, works on Ubuntu 18.04!

                – Henrique Ferrolho
                May 2 '18 at 11:34
















              132














              Simply:



              gsettings set org.gnome.shell.app-switcher current-workspace-only true





              share|improve this answer





















              • 2





                super fast, no extra software necessary and does exactly what was asked for! +1

                – Jamie-505
                Mar 3 '17 at 10:52






              • 2





                ...and for me in 17.10.

                – colan
                Oct 25 '17 at 15:44






              • 2





                It worked for me too on ubuntu 17.10, and this is the best answer

                – Marco
                Oct 26 '17 at 19:22






              • 12





                It's working on Ubuntu 18.04. It's straightforward and you don't need to install anything

                – Andrea Tulimiero
                Apr 30 '18 at 20:07






              • 5





                Yup, works on Ubuntu 18.04!

                – Henrique Ferrolho
                May 2 '18 at 11:34














              132












              132








              132







              Simply:



              gsettings set org.gnome.shell.app-switcher current-workspace-only true





              share|improve this answer















              Simply:



              gsettings set org.gnome.shell.app-switcher current-workspace-only true






              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Jan 7 '18 at 13:41









              pomsky

              31.4k1195128




              31.4k1195128










              answered Apr 21 '16 at 2:16









              austinmartonaustinmarton

              1,430197




              1,430197








              • 2





                super fast, no extra software necessary and does exactly what was asked for! +1

                – Jamie-505
                Mar 3 '17 at 10:52






              • 2





                ...and for me in 17.10.

                – colan
                Oct 25 '17 at 15:44






              • 2





                It worked for me too on ubuntu 17.10, and this is the best answer

                – Marco
                Oct 26 '17 at 19:22






              • 12





                It's working on Ubuntu 18.04. It's straightforward and you don't need to install anything

                – Andrea Tulimiero
                Apr 30 '18 at 20:07






              • 5





                Yup, works on Ubuntu 18.04!

                – Henrique Ferrolho
                May 2 '18 at 11:34














              • 2





                super fast, no extra software necessary and does exactly what was asked for! +1

                – Jamie-505
                Mar 3 '17 at 10:52






              • 2





                ...and for me in 17.10.

                – colan
                Oct 25 '17 at 15:44






              • 2





                It worked for me too on ubuntu 17.10, and this is the best answer

                – Marco
                Oct 26 '17 at 19:22






              • 12





                It's working on Ubuntu 18.04. It's straightforward and you don't need to install anything

                – Andrea Tulimiero
                Apr 30 '18 at 20:07






              • 5





                Yup, works on Ubuntu 18.04!

                – Henrique Ferrolho
                May 2 '18 at 11:34








              2




              2





              super fast, no extra software necessary and does exactly what was asked for! +1

              – Jamie-505
              Mar 3 '17 at 10:52





              super fast, no extra software necessary and does exactly what was asked for! +1

              – Jamie-505
              Mar 3 '17 at 10:52




              2




              2





              ...and for me in 17.10.

              – colan
              Oct 25 '17 at 15:44





              ...and for me in 17.10.

              – colan
              Oct 25 '17 at 15:44




              2




              2





              It worked for me too on ubuntu 17.10, and this is the best answer

              – Marco
              Oct 26 '17 at 19:22





              It worked for me too on ubuntu 17.10, and this is the best answer

              – Marco
              Oct 26 '17 at 19:22




              12




              12





              It's working on Ubuntu 18.04. It's straightforward and you don't need to install anything

              – Andrea Tulimiero
              Apr 30 '18 at 20:07





              It's working on Ubuntu 18.04. It's straightforward and you don't need to install anything

              – Andrea Tulimiero
              Apr 30 '18 at 20:07




              5




              5





              Yup, works on Ubuntu 18.04!

              – Henrique Ferrolho
              May 2 '18 at 11:34





              Yup, works on Ubuntu 18.04!

              – Henrique Ferrolho
              May 2 '18 at 11:34











              15














              As an alternative to installing dconf-editor and having to fiddle around with your mouse so much, you can also do this from terminal.



              To create the current-workspace-only value:



              dconf write /org/gnome/shell/app-switcher/current-workspace-only 'true'


              To erase it, going back to default settings:



              dconf reset /org/gnome/shell/app-switcher/current-workspace-only


              I would like dconf-editor more if it could search through paths, properties, and values.






              share|improve this answer





















              • 1





                the (later) answer using gsettings is just a higher-level api that also sets the dconf values (and would probably be in general preferred over directly accessing dconf)

                – michael
                Jan 1 '18 at 7:56
















              15














              As an alternative to installing dconf-editor and having to fiddle around with your mouse so much, you can also do this from terminal.



              To create the current-workspace-only value:



              dconf write /org/gnome/shell/app-switcher/current-workspace-only 'true'


              To erase it, going back to default settings:



              dconf reset /org/gnome/shell/app-switcher/current-workspace-only


              I would like dconf-editor more if it could search through paths, properties, and values.






              share|improve this answer





















              • 1





                the (later) answer using gsettings is just a higher-level api that also sets the dconf values (and would probably be in general preferred over directly accessing dconf)

                – michael
                Jan 1 '18 at 7:56














              15












              15








              15







              As an alternative to installing dconf-editor and having to fiddle around with your mouse so much, you can also do this from terminal.



              To create the current-workspace-only value:



              dconf write /org/gnome/shell/app-switcher/current-workspace-only 'true'


              To erase it, going back to default settings:



              dconf reset /org/gnome/shell/app-switcher/current-workspace-only


              I would like dconf-editor more if it could search through paths, properties, and values.






              share|improve this answer















              As an alternative to installing dconf-editor and having to fiddle around with your mouse so much, you can also do this from terminal.



              To create the current-workspace-only value:



              dconf write /org/gnome/shell/app-switcher/current-workspace-only 'true'


              To erase it, going back to default settings:



              dconf reset /org/gnome/shell/app-switcher/current-workspace-only


              I would like dconf-editor more if it could search through paths, properties, and values.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Apr 23 '16 at 0:02









              muru

              1




              1










              answered Jun 22 '15 at 6:37









              mattymatty

              25126




              25126








              • 1





                the (later) answer using gsettings is just a higher-level api that also sets the dconf values (and would probably be in general preferred over directly accessing dconf)

                – michael
                Jan 1 '18 at 7:56














              • 1





                the (later) answer using gsettings is just a higher-level api that also sets the dconf values (and would probably be in general preferred over directly accessing dconf)

                – michael
                Jan 1 '18 at 7:56








              1




              1





              the (later) answer using gsettings is just a higher-level api that also sets the dconf values (and would probably be in general preferred over directly accessing dconf)

              – michael
              Jan 1 '18 at 7:56





              the (later) answer using gsettings is just a higher-level api that also sets the dconf values (and would probably be in general preferred over directly accessing dconf)

              – michael
              Jan 1 '18 at 7:56











              8














              Seems to be fixed with



              gsettings set org.gnome.shell.window-switcher current-workspace-only true
              gsettings set org.gnome.shell.app-switcher current-workspace-only true





              share|improve this answer
























              • Looks like I need only the first one (.window-switcher)

                – kerner1000
                Jan 5 '18 at 17:52











              • This did the job. It only shows the apps currently in the workspace and, when an app has two instance each in a different workspace when pressing Alt+Tab it prevents from showing both of them. But you have to use both the commands in this answer. Awesome, thank you!

                – juliangonzalez
                Oct 1 '18 at 15:38


















              8














              Seems to be fixed with



              gsettings set org.gnome.shell.window-switcher current-workspace-only true
              gsettings set org.gnome.shell.app-switcher current-workspace-only true





              share|improve this answer
























              • Looks like I need only the first one (.window-switcher)

                – kerner1000
                Jan 5 '18 at 17:52











              • This did the job. It only shows the apps currently in the workspace and, when an app has two instance each in a different workspace when pressing Alt+Tab it prevents from showing both of them. But you have to use both the commands in this answer. Awesome, thank you!

                – juliangonzalez
                Oct 1 '18 at 15:38
















              8












              8








              8







              Seems to be fixed with



              gsettings set org.gnome.shell.window-switcher current-workspace-only true
              gsettings set org.gnome.shell.app-switcher current-workspace-only true





              share|improve this answer













              Seems to be fixed with



              gsettings set org.gnome.shell.window-switcher current-workspace-only true
              gsettings set org.gnome.shell.app-switcher current-workspace-only true






              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Jan 5 '18 at 16:53









              N0rbertN0rbert

              23.5k650112




              23.5k650112













              • Looks like I need only the first one (.window-switcher)

                – kerner1000
                Jan 5 '18 at 17:52











              • This did the job. It only shows the apps currently in the workspace and, when an app has two instance each in a different workspace when pressing Alt+Tab it prevents from showing both of them. But you have to use both the commands in this answer. Awesome, thank you!

                – juliangonzalez
                Oct 1 '18 at 15:38





















              • Looks like I need only the first one (.window-switcher)

                – kerner1000
                Jan 5 '18 at 17:52











              • This did the job. It only shows the apps currently in the workspace and, when an app has two instance each in a different workspace when pressing Alt+Tab it prevents from showing both of them. But you have to use both the commands in this answer. Awesome, thank you!

                – juliangonzalez
                Oct 1 '18 at 15:38



















              Looks like I need only the first one (.window-switcher)

              – kerner1000
              Jan 5 '18 at 17:52





              Looks like I need only the first one (.window-switcher)

              – kerner1000
              Jan 5 '18 at 17:52













              This did the job. It only shows the apps currently in the workspace and, when an app has two instance each in a different workspace when pressing Alt+Tab it prevents from showing both of them. But you have to use both the commands in this answer. Awesome, thank you!

              – juliangonzalez
              Oct 1 '18 at 15:38







              This did the job. It only shows the apps currently in the workspace and, when an app has two instance each in a different workspace when pressing Alt+Tab it prevents from showing both of them. But you have to use both the commands in this answer. Awesome, thank you!

              – juliangonzalez
              Oct 1 '18 at 15:38













              4














              An alternative for people who want to tab through open windows on current workspace but also want to be able to tab through all open apps (on any workspace) this can be achieved by changing the keyboard shortcuts.



              Under Settings > Devices > Keyboard (on Ubuntu 17.10):




              • Switch Windows: Alt + Tab

              • Switch Applications: Super + Tab






              share|improve this answer
























              • That's tricky - Alt+Tab changes windows, even when changing the keyboard shortcuts. Is there a way to fix that?

                – Rick-777
                Nov 29 '17 at 14:49











              • Yes, Alt+Tab will show the windows open on the current workspace whereas Super+Tab will show all open programs (on any workspace). What do you want to achieve, that Alt+Tab shows open programs on the current workspace instead of open windows?

                – Clauds
                Nov 30 '17 at 10:19











              • Hi ! I'm trying to set this specific behavior, but I don't seem to be able to. Both commands always behave the same. I tried gsettings current-workspace-only for window and app switcher with no luck either. Any idea? Thanks :)

                – Biggybi
                Apr 15 '18 at 6:16













              • I checked my gsettings and I have org.gnome.shell.app-switcher current-workspace-only false and org.gnome.shell.window-switcher current-workspace-only true

                – Clauds
                Apr 15 '18 at 9:59











              • This does not answer the question but is a great tip nonetheless.

                – crafter
                Aug 7 '18 at 22:32
















              4














              An alternative for people who want to tab through open windows on current workspace but also want to be able to tab through all open apps (on any workspace) this can be achieved by changing the keyboard shortcuts.



              Under Settings > Devices > Keyboard (on Ubuntu 17.10):




              • Switch Windows: Alt + Tab

              • Switch Applications: Super + Tab






              share|improve this answer
























              • That's tricky - Alt+Tab changes windows, even when changing the keyboard shortcuts. Is there a way to fix that?

                – Rick-777
                Nov 29 '17 at 14:49











              • Yes, Alt+Tab will show the windows open on the current workspace whereas Super+Tab will show all open programs (on any workspace). What do you want to achieve, that Alt+Tab shows open programs on the current workspace instead of open windows?

                – Clauds
                Nov 30 '17 at 10:19











              • Hi ! I'm trying to set this specific behavior, but I don't seem to be able to. Both commands always behave the same. I tried gsettings current-workspace-only for window and app switcher with no luck either. Any idea? Thanks :)

                – Biggybi
                Apr 15 '18 at 6:16













              • I checked my gsettings and I have org.gnome.shell.app-switcher current-workspace-only false and org.gnome.shell.window-switcher current-workspace-only true

                – Clauds
                Apr 15 '18 at 9:59











              • This does not answer the question but is a great tip nonetheless.

                – crafter
                Aug 7 '18 at 22:32














              4












              4








              4







              An alternative for people who want to tab through open windows on current workspace but also want to be able to tab through all open apps (on any workspace) this can be achieved by changing the keyboard shortcuts.



              Under Settings > Devices > Keyboard (on Ubuntu 17.10):




              • Switch Windows: Alt + Tab

              • Switch Applications: Super + Tab






              share|improve this answer













              An alternative for people who want to tab through open windows on current workspace but also want to be able to tab through all open apps (on any workspace) this can be achieved by changing the keyboard shortcuts.



              Under Settings > Devices > Keyboard (on Ubuntu 17.10):




              • Switch Windows: Alt + Tab

              • Switch Applications: Super + Tab







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Nov 28 '17 at 17:48









              ClaudsClauds

              1612




              1612













              • That's tricky - Alt+Tab changes windows, even when changing the keyboard shortcuts. Is there a way to fix that?

                – Rick-777
                Nov 29 '17 at 14:49











              • Yes, Alt+Tab will show the windows open on the current workspace whereas Super+Tab will show all open programs (on any workspace). What do you want to achieve, that Alt+Tab shows open programs on the current workspace instead of open windows?

                – Clauds
                Nov 30 '17 at 10:19











              • Hi ! I'm trying to set this specific behavior, but I don't seem to be able to. Both commands always behave the same. I tried gsettings current-workspace-only for window and app switcher with no luck either. Any idea? Thanks :)

                – Biggybi
                Apr 15 '18 at 6:16













              • I checked my gsettings and I have org.gnome.shell.app-switcher current-workspace-only false and org.gnome.shell.window-switcher current-workspace-only true

                – Clauds
                Apr 15 '18 at 9:59











              • This does not answer the question but is a great tip nonetheless.

                – crafter
                Aug 7 '18 at 22:32



















              • That's tricky - Alt+Tab changes windows, even when changing the keyboard shortcuts. Is there a way to fix that?

                – Rick-777
                Nov 29 '17 at 14:49











              • Yes, Alt+Tab will show the windows open on the current workspace whereas Super+Tab will show all open programs (on any workspace). What do you want to achieve, that Alt+Tab shows open programs on the current workspace instead of open windows?

                – Clauds
                Nov 30 '17 at 10:19











              • Hi ! I'm trying to set this specific behavior, but I don't seem to be able to. Both commands always behave the same. I tried gsettings current-workspace-only for window and app switcher with no luck either. Any idea? Thanks :)

                – Biggybi
                Apr 15 '18 at 6:16













              • I checked my gsettings and I have org.gnome.shell.app-switcher current-workspace-only false and org.gnome.shell.window-switcher current-workspace-only true

                – Clauds
                Apr 15 '18 at 9:59











              • This does not answer the question but is a great tip nonetheless.

                – crafter
                Aug 7 '18 at 22:32

















              That's tricky - Alt+Tab changes windows, even when changing the keyboard shortcuts. Is there a way to fix that?

              – Rick-777
              Nov 29 '17 at 14:49





              That's tricky - Alt+Tab changes windows, even when changing the keyboard shortcuts. Is there a way to fix that?

              – Rick-777
              Nov 29 '17 at 14:49













              Yes, Alt+Tab will show the windows open on the current workspace whereas Super+Tab will show all open programs (on any workspace). What do you want to achieve, that Alt+Tab shows open programs on the current workspace instead of open windows?

              – Clauds
              Nov 30 '17 at 10:19





              Yes, Alt+Tab will show the windows open on the current workspace whereas Super+Tab will show all open programs (on any workspace). What do you want to achieve, that Alt+Tab shows open programs on the current workspace instead of open windows?

              – Clauds
              Nov 30 '17 at 10:19













              Hi ! I'm trying to set this specific behavior, but I don't seem to be able to. Both commands always behave the same. I tried gsettings current-workspace-only for window and app switcher with no luck either. Any idea? Thanks :)

              – Biggybi
              Apr 15 '18 at 6:16







              Hi ! I'm trying to set this specific behavior, but I don't seem to be able to. Both commands always behave the same. I tried gsettings current-workspace-only for window and app switcher with no luck either. Any idea? Thanks :)

              – Biggybi
              Apr 15 '18 at 6:16















              I checked my gsettings and I have org.gnome.shell.app-switcher current-workspace-only false and org.gnome.shell.window-switcher current-workspace-only true

              – Clauds
              Apr 15 '18 at 9:59





              I checked my gsettings and I have org.gnome.shell.app-switcher current-workspace-only false and org.gnome.shell.window-switcher current-workspace-only true

              – Clauds
              Apr 15 '18 at 9:59













              This does not answer the question but is a great tip nonetheless.

              – crafter
              Aug 7 '18 at 22:32





              This does not answer the question but is a great tip nonetheless.

              – crafter
              Aug 7 '18 at 22:32











              2














              AlternateTab



              If you also wan't to ungroup applications on switcher you can add officially supported AlternateTab extension.



              screenshot



              Moreover:




              Actually, Ubuntu is going to have the Alternatetab as default on Alt+tab in the upcoming version of Ubuntu (19.04), while the current default app switcher will remain on Super+tab







              share|improve this answer






























                2














                AlternateTab



                If you also wan't to ungroup applications on switcher you can add officially supported AlternateTab extension.



                screenshot



                Moreover:




                Actually, Ubuntu is going to have the Alternatetab as default on Alt+tab in the upcoming version of Ubuntu (19.04), while the current default app switcher will remain on Super+tab







                share|improve this answer




























                  2












                  2








                  2







                  AlternateTab



                  If you also wan't to ungroup applications on switcher you can add officially supported AlternateTab extension.



                  screenshot



                  Moreover:




                  Actually, Ubuntu is going to have the Alternatetab as default on Alt+tab in the upcoming version of Ubuntu (19.04), while the current default app switcher will remain on Super+tab







                  share|improve this answer















                  AlternateTab



                  If you also wan't to ungroup applications on switcher you can add officially supported AlternateTab extension.



                  screenshot



                  Moreover:




                  Actually, Ubuntu is going to have the Alternatetab as default on Alt+tab in the upcoming version of Ubuntu (19.04), while the current default app switcher will remain on Super+tab








                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited 10 mins ago

























                  answered Feb 9 at 4:43









                  Pablo BianchiPablo Bianchi

                  2,75821533




                  2,75821533























                      1














                      The other solutions here did not work for me on Ubuntu 18.04.1, but the Alt Tab Workspace extension worked.






                      share|improve this answer




























                        1














                        The other solutions here did not work for me on Ubuntu 18.04.1, but the Alt Tab Workspace extension worked.






                        share|improve this answer


























                          1












                          1








                          1







                          The other solutions here did not work for me on Ubuntu 18.04.1, but the Alt Tab Workspace extension worked.






                          share|improve this answer













                          The other solutions here did not work for me on Ubuntu 18.04.1, but the Alt Tab Workspace extension worked.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Aug 2 '18 at 4:14









                          k_gk_g

                          1387




                          1387

















                              protected by N0rbert Sep 20 '18 at 10:34



                              Thank you for your interest in this question.
                              Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                              Would you like to answer one of these unanswered questions instead?



                              Popular posts from this blog

                              List of shipwrecks in 1808...

                              Is there a lightweight tool to crop images quickly?Cropping Images using Command Line Tools OnlyHow to crop...

                              Unit packagekit.service is masked Announcing the arrival of Valued Associate #679: Cesar...