Reduce title bar height in gnome 3 / gtk+ 3How to change gnome-shell titlebar heightHow to change the...

Why did the US Airways Flight 1549 passengers stay on the wings?

What is the reason behind water not falling from a bucket at the top of loop?

Ancients don't give a full level?

Is space radiation a risk for space film photography, and how is this prevented?

What could prevent players from leaving an island?

Formal mathematical definition of renormalization group flow

Is an "are" omitted in this sentence

What is it exactly about flying a Flyboard across the English channel that made Zapata's thighs burn?

How do I handle a DM that plays favorites with certain players?

Can attackers change the public key of certificate during the SSL handshake

Getting an entry level IT position later in life

Probably terminated or laid off soon; confront or not?

Why is it to say 'paucis post diebus'?

Did Logical Positivism fail because it simply denied human emotion?

A Checkmate of Dubious Legality

How to call made-up data?

Four-velocity of radially infalling gas in Schwarzschild metric

Why is the Vasa Museum in Stockholm so Popular?

How can I perform a deterministic physics simulation?

Has J.J.Jameson ever found out that Peter Parker is Spider-Man?

Drawing arrowtips at the end of each segment in a polygonal path

How does Rust's 128-bit integer `i128` work on a 64-bit system?

On the consistency of different well-polished astronomy software

Why should I "believe in" weak solutions to PDEs?



Reduce title bar height in gnome 3 / gtk+ 3


How to change gnome-shell titlebar heightHow to change the titlebar height in standard GTK apps and those with headerbars/CSDs on Gnome 3.20How to remove the border under the titlebar in Gnome 3.20?How to change the size of the Terminal Titlebar in Terminator?How do I suppress the title bar and window decorations on a maximized window in Gnome 3.12?How to print xterm's dimensions in title bar?No window title bar when X Toolkit “-title” argument ends in “lock”How to change the titlebar height in standard GTK apps and those with headerbars/CSDs on Gnome 3.20How to remove the border under the titlebar in Gnome 3.20?Squares on Gnome 3 Title BarXfce4 + Xfwm middle click Title bar closes window - how to remove action?Is there any way we can reduce size for all widgets including button, menu/menu item etc in Gnome 3.20 or above?How to hide title bar for a specific window?Top bar not showing when i start Geany in GNOME






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







18















I'm running gnome 3.18 and I would like to reduce the title bar height.



Any ideas ?










share|improve this question

































    18















    I'm running gnome 3.18 and I would like to reduce the title bar height.



    Any ideas ?










    share|improve this question





























      18












      18








      18


      10






      I'm running gnome 3.18 and I would like to reduce the title bar height.



      Any ideas ?










      share|improve this question
















      I'm running gnome 3.18 and I would like to reduce the title bar height.



      Any ideas ?







      gnome3 gtk3 window-title






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 1 '16 at 12:27









      don_crissti

      54.2k17 gold badges149 silver badges177 bronze badges




      54.2k17 gold badges149 silver badges177 bronze badges










      asked Jan 23 '16 at 5:32









      R PhilippeR Philippe

      911 gold badge1 silver badge4 bronze badges




      911 gold badge1 silver badge4 bronze badges

























          4 Answers
          4






          active

          oldest

          votes


















          18














          After Gnome 3.20, .header-bar.default-decoration doesn't work.



          You can put follow content into ~/.config/gtk-3.0/gtk.css:



          /* shrink headerbars (don't forget semicolons after each property) */
          headerbar {
          min-height: 0px;
          padding-left: 2px; /* same as childrens vertical margins for nicer proportions */
          padding-right: 2px;
          background-color: #2d2d2d;
          }

          headerbar entry,
          headerbar spinbutton,
          headerbar button,
          headerbar separator {
          margin-top: 0px; /* same as headerbar side padding for nicer proportions */
          margin-bottom: 0px;
          }

          /* shrink ssd titlebars */
          .default-decoration {
          min-height: 0; /* let the entry and button drive the titlebar size */
          padding: 0px;
          background-color: #2d2d2d;
          }

          .default-decoration .titlebutton {
          min-height: 0px; /* tweak these two props to reduce button size */
          min-width: 0px;
          }

          window.ssd headerbar.titlebar {
          padding-top: 3px;
          padding-bottom: 3px;
          min-height: 0;
          }

          window.ssd headerbar.titlebar button.titlebutton {
          padding-top: 3px;
          padding-bottom:3px;
          min-height: 0;
          }


          via https://ogbe.net/blog/gnome_titles.html






          share|improve this answer




























          • I believe a semicolon is missing on line 20 padding: 0px

            – Troy Folger
            Apr 4 '17 at 23:33











          • Awesome! Works in Bionic too. Just changed the 3px values to 1px and it's nice and minimal.

            – Justin
            Jun 2 '18 at 16:48











          • For me, this caused the far-right window buttons to squish together. To fix this, I had to replace lines 13 and 14 (margin-top, margin-bottom) with simply margin: 0px; (which implies all four margin-* directions).

            – brandones
            Apr 4 at 1:20











          • I also had to add padding-right: 6px; as line 31 in order to put some padding between the side of the window headerbar and the "close window" X button.

            – brandones
            Apr 4 at 1:22



















          11














          To reduce the titlebar size just create a css file in this location: ~/.config/gtk-3.0/gtk.css and copy paste the code below; this will resize the titlebar:



          .header-bar.default-decoration {
          padding-top: 0px;
          padding-bottom: 0px;
          }

          .header-bar.default-decoration .button.titlebutton {
          padding-top: 0px;
          padding-bottom: 0px;
          }


          you can add this code (on the same file) to remove the line under the titlebar to reduce a little bit more the size:



          /* No line below the title bar */
          .ssd .titlebar {
          border-width: 0;
          box-shadow: none;
          }


          press ALT + F2, type r in the box that appears and hit Enter to reload the gnome shell.



          And you're good to go :)






          share|improve this answer























          • 4





            This seems to no longer work on gnome-application in Gnome 3.20, see my questions here. Any ideas of how to modify the css to apply to gnome-programs, such as Nautilus in 3.20?

            – joelostblom
            Apr 16 '16 at 21:34








          • 2





            doesn't work anymore

            – Luciano
            May 6 '16 at 13:37



















          3














          For maximized windows, I can recommend this Gnome Shell Extension called Pixel Saver by a guy deadalnix. The title bar will disappear (more space for notebook users), but you can still see the window title in the black activity bar.



          enter image description here






          share|improve this answer

































            0














            Depending on your Linux distribution and the package manager and/or package, install Gnome Tweak Tool.



            Gnome Tweak Tool



            Select the "Fonts" tab in the side-menu.



            Then, set the Text Height for Window Titles to as low a number as you like.



            Window Titles Font Selection



            NOTE: this is only applicable for older versions of GNOME






            share|improve this answer




























            • Doesn't change the titlebar size, just the font size in the titlebar so no good.

              – Dave Moten
              Jul 31 at 3:22











            • This applies to older versions of GNOME only. It is irrelevant for versions after 3.20, as @RobertLu mentioned in that answer.

              – ILMostro_7
              4 hours ago














            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "106"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f257163%2freduce-title-bar-height-in-gnome-3-gtk-3%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            4 Answers
            4






            active

            oldest

            votes








            4 Answers
            4






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            18














            After Gnome 3.20, .header-bar.default-decoration doesn't work.



            You can put follow content into ~/.config/gtk-3.0/gtk.css:



            /* shrink headerbars (don't forget semicolons after each property) */
            headerbar {
            min-height: 0px;
            padding-left: 2px; /* same as childrens vertical margins for nicer proportions */
            padding-right: 2px;
            background-color: #2d2d2d;
            }

            headerbar entry,
            headerbar spinbutton,
            headerbar button,
            headerbar separator {
            margin-top: 0px; /* same as headerbar side padding for nicer proportions */
            margin-bottom: 0px;
            }

            /* shrink ssd titlebars */
            .default-decoration {
            min-height: 0; /* let the entry and button drive the titlebar size */
            padding: 0px;
            background-color: #2d2d2d;
            }

            .default-decoration .titlebutton {
            min-height: 0px; /* tweak these two props to reduce button size */
            min-width: 0px;
            }

            window.ssd headerbar.titlebar {
            padding-top: 3px;
            padding-bottom: 3px;
            min-height: 0;
            }

            window.ssd headerbar.titlebar button.titlebutton {
            padding-top: 3px;
            padding-bottom:3px;
            min-height: 0;
            }


            via https://ogbe.net/blog/gnome_titles.html






            share|improve this answer




























            • I believe a semicolon is missing on line 20 padding: 0px

              – Troy Folger
              Apr 4 '17 at 23:33











            • Awesome! Works in Bionic too. Just changed the 3px values to 1px and it's nice and minimal.

              – Justin
              Jun 2 '18 at 16:48











            • For me, this caused the far-right window buttons to squish together. To fix this, I had to replace lines 13 and 14 (margin-top, margin-bottom) with simply margin: 0px; (which implies all four margin-* directions).

              – brandones
              Apr 4 at 1:20











            • I also had to add padding-right: 6px; as line 31 in order to put some padding between the side of the window headerbar and the "close window" X button.

              – brandones
              Apr 4 at 1:22
















            18














            After Gnome 3.20, .header-bar.default-decoration doesn't work.



            You can put follow content into ~/.config/gtk-3.0/gtk.css:



            /* shrink headerbars (don't forget semicolons after each property) */
            headerbar {
            min-height: 0px;
            padding-left: 2px; /* same as childrens vertical margins for nicer proportions */
            padding-right: 2px;
            background-color: #2d2d2d;
            }

            headerbar entry,
            headerbar spinbutton,
            headerbar button,
            headerbar separator {
            margin-top: 0px; /* same as headerbar side padding for nicer proportions */
            margin-bottom: 0px;
            }

            /* shrink ssd titlebars */
            .default-decoration {
            min-height: 0; /* let the entry and button drive the titlebar size */
            padding: 0px;
            background-color: #2d2d2d;
            }

            .default-decoration .titlebutton {
            min-height: 0px; /* tweak these two props to reduce button size */
            min-width: 0px;
            }

            window.ssd headerbar.titlebar {
            padding-top: 3px;
            padding-bottom: 3px;
            min-height: 0;
            }

            window.ssd headerbar.titlebar button.titlebutton {
            padding-top: 3px;
            padding-bottom:3px;
            min-height: 0;
            }


            via https://ogbe.net/blog/gnome_titles.html






            share|improve this answer




























            • I believe a semicolon is missing on line 20 padding: 0px

              – Troy Folger
              Apr 4 '17 at 23:33











            • Awesome! Works in Bionic too. Just changed the 3px values to 1px and it's nice and minimal.

              – Justin
              Jun 2 '18 at 16:48











            • For me, this caused the far-right window buttons to squish together. To fix this, I had to replace lines 13 and 14 (margin-top, margin-bottom) with simply margin: 0px; (which implies all four margin-* directions).

              – brandones
              Apr 4 at 1:20











            • I also had to add padding-right: 6px; as line 31 in order to put some padding between the side of the window headerbar and the "close window" X button.

              – brandones
              Apr 4 at 1:22














            18












            18








            18







            After Gnome 3.20, .header-bar.default-decoration doesn't work.



            You can put follow content into ~/.config/gtk-3.0/gtk.css:



            /* shrink headerbars (don't forget semicolons after each property) */
            headerbar {
            min-height: 0px;
            padding-left: 2px; /* same as childrens vertical margins for nicer proportions */
            padding-right: 2px;
            background-color: #2d2d2d;
            }

            headerbar entry,
            headerbar spinbutton,
            headerbar button,
            headerbar separator {
            margin-top: 0px; /* same as headerbar side padding for nicer proportions */
            margin-bottom: 0px;
            }

            /* shrink ssd titlebars */
            .default-decoration {
            min-height: 0; /* let the entry and button drive the titlebar size */
            padding: 0px;
            background-color: #2d2d2d;
            }

            .default-decoration .titlebutton {
            min-height: 0px; /* tweak these two props to reduce button size */
            min-width: 0px;
            }

            window.ssd headerbar.titlebar {
            padding-top: 3px;
            padding-bottom: 3px;
            min-height: 0;
            }

            window.ssd headerbar.titlebar button.titlebutton {
            padding-top: 3px;
            padding-bottom:3px;
            min-height: 0;
            }


            via https://ogbe.net/blog/gnome_titles.html






            share|improve this answer















            After Gnome 3.20, .header-bar.default-decoration doesn't work.



            You can put follow content into ~/.config/gtk-3.0/gtk.css:



            /* shrink headerbars (don't forget semicolons after each property) */
            headerbar {
            min-height: 0px;
            padding-left: 2px; /* same as childrens vertical margins for nicer proportions */
            padding-right: 2px;
            background-color: #2d2d2d;
            }

            headerbar entry,
            headerbar spinbutton,
            headerbar button,
            headerbar separator {
            margin-top: 0px; /* same as headerbar side padding for nicer proportions */
            margin-bottom: 0px;
            }

            /* shrink ssd titlebars */
            .default-decoration {
            min-height: 0; /* let the entry and button drive the titlebar size */
            padding: 0px;
            background-color: #2d2d2d;
            }

            .default-decoration .titlebutton {
            min-height: 0px; /* tweak these two props to reduce button size */
            min-width: 0px;
            }

            window.ssd headerbar.titlebar {
            padding-top: 3px;
            padding-bottom: 3px;
            min-height: 0;
            }

            window.ssd headerbar.titlebar button.titlebutton {
            padding-top: 3px;
            padding-bottom:3px;
            min-height: 0;
            }


            via https://ogbe.net/blog/gnome_titles.html







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Apr 12 '17 at 16:20









            Benjamin Leinweber

            1054 bronze badges




            1054 bronze badges










            answered Feb 9 '17 at 6:40









            Robert LuRobert Lu

            2812 silver badges4 bronze badges




            2812 silver badges4 bronze badges
















            • I believe a semicolon is missing on line 20 padding: 0px

              – Troy Folger
              Apr 4 '17 at 23:33











            • Awesome! Works in Bionic too. Just changed the 3px values to 1px and it's nice and minimal.

              – Justin
              Jun 2 '18 at 16:48











            • For me, this caused the far-right window buttons to squish together. To fix this, I had to replace lines 13 and 14 (margin-top, margin-bottom) with simply margin: 0px; (which implies all four margin-* directions).

              – brandones
              Apr 4 at 1:20











            • I also had to add padding-right: 6px; as line 31 in order to put some padding between the side of the window headerbar and the "close window" X button.

              – brandones
              Apr 4 at 1:22



















            • I believe a semicolon is missing on line 20 padding: 0px

              – Troy Folger
              Apr 4 '17 at 23:33











            • Awesome! Works in Bionic too. Just changed the 3px values to 1px and it's nice and minimal.

              – Justin
              Jun 2 '18 at 16:48











            • For me, this caused the far-right window buttons to squish together. To fix this, I had to replace lines 13 and 14 (margin-top, margin-bottom) with simply margin: 0px; (which implies all four margin-* directions).

              – brandones
              Apr 4 at 1:20











            • I also had to add padding-right: 6px; as line 31 in order to put some padding between the side of the window headerbar and the "close window" X button.

              – brandones
              Apr 4 at 1:22

















            I believe a semicolon is missing on line 20 padding: 0px

            – Troy Folger
            Apr 4 '17 at 23:33





            I believe a semicolon is missing on line 20 padding: 0px

            – Troy Folger
            Apr 4 '17 at 23:33













            Awesome! Works in Bionic too. Just changed the 3px values to 1px and it's nice and minimal.

            – Justin
            Jun 2 '18 at 16:48





            Awesome! Works in Bionic too. Just changed the 3px values to 1px and it's nice and minimal.

            – Justin
            Jun 2 '18 at 16:48













            For me, this caused the far-right window buttons to squish together. To fix this, I had to replace lines 13 and 14 (margin-top, margin-bottom) with simply margin: 0px; (which implies all four margin-* directions).

            – brandones
            Apr 4 at 1:20





            For me, this caused the far-right window buttons to squish together. To fix this, I had to replace lines 13 and 14 (margin-top, margin-bottom) with simply margin: 0px; (which implies all four margin-* directions).

            – brandones
            Apr 4 at 1:20













            I also had to add padding-right: 6px; as line 31 in order to put some padding between the side of the window headerbar and the "close window" X button.

            – brandones
            Apr 4 at 1:22





            I also had to add padding-right: 6px; as line 31 in order to put some padding between the side of the window headerbar and the "close window" X button.

            – brandones
            Apr 4 at 1:22













            11














            To reduce the titlebar size just create a css file in this location: ~/.config/gtk-3.0/gtk.css and copy paste the code below; this will resize the titlebar:



            .header-bar.default-decoration {
            padding-top: 0px;
            padding-bottom: 0px;
            }

            .header-bar.default-decoration .button.titlebutton {
            padding-top: 0px;
            padding-bottom: 0px;
            }


            you can add this code (on the same file) to remove the line under the titlebar to reduce a little bit more the size:



            /* No line below the title bar */
            .ssd .titlebar {
            border-width: 0;
            box-shadow: none;
            }


            press ALT + F2, type r in the box that appears and hit Enter to reload the gnome shell.



            And you're good to go :)






            share|improve this answer























            • 4





              This seems to no longer work on gnome-application in Gnome 3.20, see my questions here. Any ideas of how to modify the css to apply to gnome-programs, such as Nautilus in 3.20?

              – joelostblom
              Apr 16 '16 at 21:34








            • 2





              doesn't work anymore

              – Luciano
              May 6 '16 at 13:37
















            11














            To reduce the titlebar size just create a css file in this location: ~/.config/gtk-3.0/gtk.css and copy paste the code below; this will resize the titlebar:



            .header-bar.default-decoration {
            padding-top: 0px;
            padding-bottom: 0px;
            }

            .header-bar.default-decoration .button.titlebutton {
            padding-top: 0px;
            padding-bottom: 0px;
            }


            you can add this code (on the same file) to remove the line under the titlebar to reduce a little bit more the size:



            /* No line below the title bar */
            .ssd .titlebar {
            border-width: 0;
            box-shadow: none;
            }


            press ALT + F2, type r in the box that appears and hit Enter to reload the gnome shell.



            And you're good to go :)






            share|improve this answer























            • 4





              This seems to no longer work on gnome-application in Gnome 3.20, see my questions here. Any ideas of how to modify the css to apply to gnome-programs, such as Nautilus in 3.20?

              – joelostblom
              Apr 16 '16 at 21:34








            • 2





              doesn't work anymore

              – Luciano
              May 6 '16 at 13:37














            11












            11








            11







            To reduce the titlebar size just create a css file in this location: ~/.config/gtk-3.0/gtk.css and copy paste the code below; this will resize the titlebar:



            .header-bar.default-decoration {
            padding-top: 0px;
            padding-bottom: 0px;
            }

            .header-bar.default-decoration .button.titlebutton {
            padding-top: 0px;
            padding-bottom: 0px;
            }


            you can add this code (on the same file) to remove the line under the titlebar to reduce a little bit more the size:



            /* No line below the title bar */
            .ssd .titlebar {
            border-width: 0;
            box-shadow: none;
            }


            press ALT + F2, type r in the box that appears and hit Enter to reload the gnome shell.



            And you're good to go :)






            share|improve this answer















            To reduce the titlebar size just create a css file in this location: ~/.config/gtk-3.0/gtk.css and copy paste the code below; this will resize the titlebar:



            .header-bar.default-decoration {
            padding-top: 0px;
            padding-bottom: 0px;
            }

            .header-bar.default-decoration .button.titlebutton {
            padding-top: 0px;
            padding-bottom: 0px;
            }


            you can add this code (on the same file) to remove the line under the titlebar to reduce a little bit more the size:



            /* No line below the title bar */
            .ssd .titlebar {
            border-width: 0;
            box-shadow: none;
            }


            press ALT + F2, type r in the box that appears and hit Enter to reload the gnome shell.



            And you're good to go :)







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jan 30 '16 at 11:33









            don_crissti

            54.2k17 gold badges149 silver badges177 bronze badges




            54.2k17 gold badges149 silver badges177 bronze badges










            answered Jan 30 '16 at 10:54









            dreboydreboy

            1113 bronze badges




            1113 bronze badges











            • 4





              This seems to no longer work on gnome-application in Gnome 3.20, see my questions here. Any ideas of how to modify the css to apply to gnome-programs, such as Nautilus in 3.20?

              – joelostblom
              Apr 16 '16 at 21:34








            • 2





              doesn't work anymore

              – Luciano
              May 6 '16 at 13:37














            • 4





              This seems to no longer work on gnome-application in Gnome 3.20, see my questions here. Any ideas of how to modify the css to apply to gnome-programs, such as Nautilus in 3.20?

              – joelostblom
              Apr 16 '16 at 21:34








            • 2





              doesn't work anymore

              – Luciano
              May 6 '16 at 13:37








            4




            4





            This seems to no longer work on gnome-application in Gnome 3.20, see my questions here. Any ideas of how to modify the css to apply to gnome-programs, such as Nautilus in 3.20?

            – joelostblom
            Apr 16 '16 at 21:34







            This seems to no longer work on gnome-application in Gnome 3.20, see my questions here. Any ideas of how to modify the css to apply to gnome-programs, such as Nautilus in 3.20?

            – joelostblom
            Apr 16 '16 at 21:34






            2




            2





            doesn't work anymore

            – Luciano
            May 6 '16 at 13:37





            doesn't work anymore

            – Luciano
            May 6 '16 at 13:37











            3














            For maximized windows, I can recommend this Gnome Shell Extension called Pixel Saver by a guy deadalnix. The title bar will disappear (more space for notebook users), but you can still see the window title in the black activity bar.



            enter image description here






            share|improve this answer






























              3














              For maximized windows, I can recommend this Gnome Shell Extension called Pixel Saver by a guy deadalnix. The title bar will disappear (more space for notebook users), but you can still see the window title in the black activity bar.



              enter image description here






              share|improve this answer




























                3












                3








                3







                For maximized windows, I can recommend this Gnome Shell Extension called Pixel Saver by a guy deadalnix. The title bar will disappear (more space for notebook users), but you can still see the window title in the black activity bar.



                enter image description here






                share|improve this answer













                For maximized windows, I can recommend this Gnome Shell Extension called Pixel Saver by a guy deadalnix. The title bar will disappear (more space for notebook users), but you can still see the window title in the black activity bar.



                enter image description here







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jul 11 '17 at 16:16









                aliopialiopi

                1387 bronze badges




                1387 bronze badges


























                    0














                    Depending on your Linux distribution and the package manager and/or package, install Gnome Tweak Tool.



                    Gnome Tweak Tool



                    Select the "Fonts" tab in the side-menu.



                    Then, set the Text Height for Window Titles to as low a number as you like.



                    Window Titles Font Selection



                    NOTE: this is only applicable for older versions of GNOME






                    share|improve this answer




























                    • Doesn't change the titlebar size, just the font size in the titlebar so no good.

                      – Dave Moten
                      Jul 31 at 3:22











                    • This applies to older versions of GNOME only. It is irrelevant for versions after 3.20, as @RobertLu mentioned in that answer.

                      – ILMostro_7
                      4 hours ago
















                    0














                    Depending on your Linux distribution and the package manager and/or package, install Gnome Tweak Tool.



                    Gnome Tweak Tool



                    Select the "Fonts" tab in the side-menu.



                    Then, set the Text Height for Window Titles to as low a number as you like.



                    Window Titles Font Selection



                    NOTE: this is only applicable for older versions of GNOME






                    share|improve this answer




























                    • Doesn't change the titlebar size, just the font size in the titlebar so no good.

                      – Dave Moten
                      Jul 31 at 3:22











                    • This applies to older versions of GNOME only. It is irrelevant for versions after 3.20, as @RobertLu mentioned in that answer.

                      – ILMostro_7
                      4 hours ago














                    0












                    0








                    0







                    Depending on your Linux distribution and the package manager and/or package, install Gnome Tweak Tool.



                    Gnome Tweak Tool



                    Select the "Fonts" tab in the side-menu.



                    Then, set the Text Height for Window Titles to as low a number as you like.



                    Window Titles Font Selection



                    NOTE: this is only applicable for older versions of GNOME






                    share|improve this answer















                    Depending on your Linux distribution and the package manager and/or package, install Gnome Tweak Tool.



                    Gnome Tweak Tool



                    Select the "Fonts" tab in the side-menu.



                    Then, set the Text Height for Window Titles to as low a number as you like.



                    Window Titles Font Selection



                    NOTE: this is only applicable for older versions of GNOME







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited 4 hours ago

























                    answered Jul 11 '17 at 18:05









                    ILMostro_7ILMostro_7

                    1,69614 silver badges22 bronze badges




                    1,69614 silver badges22 bronze badges
















                    • Doesn't change the titlebar size, just the font size in the titlebar so no good.

                      – Dave Moten
                      Jul 31 at 3:22











                    • This applies to older versions of GNOME only. It is irrelevant for versions after 3.20, as @RobertLu mentioned in that answer.

                      – ILMostro_7
                      4 hours ago



















                    • Doesn't change the titlebar size, just the font size in the titlebar so no good.

                      – Dave Moten
                      Jul 31 at 3:22











                    • This applies to older versions of GNOME only. It is irrelevant for versions after 3.20, as @RobertLu mentioned in that answer.

                      – ILMostro_7
                      4 hours ago

















                    Doesn't change the titlebar size, just the font size in the titlebar so no good.

                    – Dave Moten
                    Jul 31 at 3:22





                    Doesn't change the titlebar size, just the font size in the titlebar so no good.

                    – Dave Moten
                    Jul 31 at 3:22













                    This applies to older versions of GNOME only. It is irrelevant for versions after 3.20, as @RobertLu mentioned in that answer.

                    – ILMostro_7
                    4 hours ago





                    This applies to older versions of GNOME only. It is irrelevant for versions after 3.20, as @RobertLu mentioned in that answer.

                    – ILMostro_7
                    4 hours ago


















                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f257163%2freduce-title-bar-height-in-gnome-3-gtk-3%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

                    Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

                    Nicolae Petrescu-Găină Cuprins Biografie | Opera | In memoriam | Varia | Controverse, incertitudini...