How to change App Drawer background to be less transparent











up vote
3
down vote

favorite












How can I change the Ubuntu app drawer background color? or how can I decrease the blur effect, I don't want to see my wallpaper when I'm on the app drawer page.



Too transparent.



large icons, wallpaper behind



I like this background.



dark background with Ubuntu MATE logo, app icons on top










share|improve this question




























    up vote
    3
    down vote

    favorite












    How can I change the Ubuntu app drawer background color? or how can I decrease the blur effect, I don't want to see my wallpaper when I'm on the app drawer page.



    Too transparent.



    large icons, wallpaper behind



    I like this background.



    dark background with Ubuntu MATE logo, app icons on top










    share|improve this question


























      up vote
      3
      down vote

      favorite









      up vote
      3
      down vote

      favorite











      How can I change the Ubuntu app drawer background color? or how can I decrease the blur effect, I don't want to see my wallpaper when I'm on the app drawer page.



      Too transparent.



      large icons, wallpaper behind



      I like this background.



      dark background with Ubuntu MATE logo, app icons on top










      share|improve this question















      How can I change the Ubuntu app drawer background color? or how can I decrease the blur effect, I don't want to see my wallpaper when I'm on the app drawer page.



      Too transparent.



      large icons, wallpaper behind



      I like this background.



      dark background with Ubuntu MATE logo, app icons on top







      themes gnome-shell colors






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 6 at 8:49









      Zanna

      49k13123234




      49k13123234










      asked Nov 6 at 0:11









      SHawk

      233




      233






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          2
          down vote



          accepted










          the app drawer background color can be changed by editing gdm3.css file.



          enter image description here



          Please note that, with this answer, the background is not fully covered with the color we want, still edges, and the second page are transparent. i could not break the code for it.



          first we need to take the back up of gdm3.css file.

          this gdm3.css file is a linked file. i messed up several times with this gdm3.css file.

          the best way to take backup is copy pasting the content of gdm3.css file into a new text file.



          create a text file called "gdm3 backup" and save it in your preferred location.



          now open gdm3.css file with you favorite text editor, mine is gedit, so



          sudo -H gedit /etc/alternatives/gdm3.css



          copy all the content in it, paste in "gdm3 backup" file which we created earlier.

          save and close the "gdm3 backup" file.



          now we will edit /etc/alternatives/gdm3.css file which is already opened.

          go to line number 1321 and find the below content.



          /* App Vault/Grid */
          .icon-grid {
          spacing: 30px;
          -shell-grid-horizontal-item-size: 136px;
          -shell-grid-vertical-item-size: 136px; }
          .icon-grid .overview-icon {
          icon-size: 96px; }


          and change it like below, replace any color you want in place of rgba field.



          /* App Vault/Grid */
          .icon-grid {
          spacing: 30px;
          -shell-grid-horizontal-item-size: 136px;
          -shell-grid-vertical-item-size: 136px;
          background-color: rgba(71, 68, 68, 1); }
          .icon-grid .overview-icon {
          icon-size: 96px; }


          Observe i have edited line number 1321 and added this under line number 1321
          background-color: rgba(71, 68, 68, 1); }



          Save the file, Close & Reboot or Logout and Login to see the Change.



          enter image description here



          enter image description here



          I Use this website for choosing colors https://www.color-hex.com/

          Control the transparency by the fourth value in rgba(71, 68, 68, 1)



          enter image description here



          Other Color with 0.5 transparency: rgba(0, 165, 230, 0.5)



          enter image description here






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            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',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            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%2faskubuntu.com%2fquestions%2f1090352%2fhow-to-change-app-drawer-background-to-be-less-transparent%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            2
            down vote



            accepted










            the app drawer background color can be changed by editing gdm3.css file.



            enter image description here



            Please note that, with this answer, the background is not fully covered with the color we want, still edges, and the second page are transparent. i could not break the code for it.



            first we need to take the back up of gdm3.css file.

            this gdm3.css file is a linked file. i messed up several times with this gdm3.css file.

            the best way to take backup is copy pasting the content of gdm3.css file into a new text file.



            create a text file called "gdm3 backup" and save it in your preferred location.



            now open gdm3.css file with you favorite text editor, mine is gedit, so



            sudo -H gedit /etc/alternatives/gdm3.css



            copy all the content in it, paste in "gdm3 backup" file which we created earlier.

            save and close the "gdm3 backup" file.



            now we will edit /etc/alternatives/gdm3.css file which is already opened.

            go to line number 1321 and find the below content.



            /* App Vault/Grid */
            .icon-grid {
            spacing: 30px;
            -shell-grid-horizontal-item-size: 136px;
            -shell-grid-vertical-item-size: 136px; }
            .icon-grid .overview-icon {
            icon-size: 96px; }


            and change it like below, replace any color you want in place of rgba field.



            /* App Vault/Grid */
            .icon-grid {
            spacing: 30px;
            -shell-grid-horizontal-item-size: 136px;
            -shell-grid-vertical-item-size: 136px;
            background-color: rgba(71, 68, 68, 1); }
            .icon-grid .overview-icon {
            icon-size: 96px; }


            Observe i have edited line number 1321 and added this under line number 1321
            background-color: rgba(71, 68, 68, 1); }



            Save the file, Close & Reboot or Logout and Login to see the Change.



            enter image description here



            enter image description here



            I Use this website for choosing colors https://www.color-hex.com/

            Control the transparency by the fourth value in rgba(71, 68, 68, 1)



            enter image description here



            Other Color with 0.5 transparency: rgba(0, 165, 230, 0.5)



            enter image description here






            share|improve this answer



























              up vote
              2
              down vote



              accepted










              the app drawer background color can be changed by editing gdm3.css file.



              enter image description here



              Please note that, with this answer, the background is not fully covered with the color we want, still edges, and the second page are transparent. i could not break the code for it.



              first we need to take the back up of gdm3.css file.

              this gdm3.css file is a linked file. i messed up several times with this gdm3.css file.

              the best way to take backup is copy pasting the content of gdm3.css file into a new text file.



              create a text file called "gdm3 backup" and save it in your preferred location.



              now open gdm3.css file with you favorite text editor, mine is gedit, so



              sudo -H gedit /etc/alternatives/gdm3.css



              copy all the content in it, paste in "gdm3 backup" file which we created earlier.

              save and close the "gdm3 backup" file.



              now we will edit /etc/alternatives/gdm3.css file which is already opened.

              go to line number 1321 and find the below content.



              /* App Vault/Grid */
              .icon-grid {
              spacing: 30px;
              -shell-grid-horizontal-item-size: 136px;
              -shell-grid-vertical-item-size: 136px; }
              .icon-grid .overview-icon {
              icon-size: 96px; }


              and change it like below, replace any color you want in place of rgba field.



              /* App Vault/Grid */
              .icon-grid {
              spacing: 30px;
              -shell-grid-horizontal-item-size: 136px;
              -shell-grid-vertical-item-size: 136px;
              background-color: rgba(71, 68, 68, 1); }
              .icon-grid .overview-icon {
              icon-size: 96px; }


              Observe i have edited line number 1321 and added this under line number 1321
              background-color: rgba(71, 68, 68, 1); }



              Save the file, Close & Reboot or Logout and Login to see the Change.



              enter image description here



              enter image description here



              I Use this website for choosing colors https://www.color-hex.com/

              Control the transparency by the fourth value in rgba(71, 68, 68, 1)



              enter image description here



              Other Color with 0.5 transparency: rgba(0, 165, 230, 0.5)



              enter image description here






              share|improve this answer

























                up vote
                2
                down vote



                accepted







                up vote
                2
                down vote



                accepted






                the app drawer background color can be changed by editing gdm3.css file.



                enter image description here



                Please note that, with this answer, the background is not fully covered with the color we want, still edges, and the second page are transparent. i could not break the code for it.



                first we need to take the back up of gdm3.css file.

                this gdm3.css file is a linked file. i messed up several times with this gdm3.css file.

                the best way to take backup is copy pasting the content of gdm3.css file into a new text file.



                create a text file called "gdm3 backup" and save it in your preferred location.



                now open gdm3.css file with you favorite text editor, mine is gedit, so



                sudo -H gedit /etc/alternatives/gdm3.css



                copy all the content in it, paste in "gdm3 backup" file which we created earlier.

                save and close the "gdm3 backup" file.



                now we will edit /etc/alternatives/gdm3.css file which is already opened.

                go to line number 1321 and find the below content.



                /* App Vault/Grid */
                .icon-grid {
                spacing: 30px;
                -shell-grid-horizontal-item-size: 136px;
                -shell-grid-vertical-item-size: 136px; }
                .icon-grid .overview-icon {
                icon-size: 96px; }


                and change it like below, replace any color you want in place of rgba field.



                /* App Vault/Grid */
                .icon-grid {
                spacing: 30px;
                -shell-grid-horizontal-item-size: 136px;
                -shell-grid-vertical-item-size: 136px;
                background-color: rgba(71, 68, 68, 1); }
                .icon-grid .overview-icon {
                icon-size: 96px; }


                Observe i have edited line number 1321 and added this under line number 1321
                background-color: rgba(71, 68, 68, 1); }



                Save the file, Close & Reboot or Logout and Login to see the Change.



                enter image description here



                enter image description here



                I Use this website for choosing colors https://www.color-hex.com/

                Control the transparency by the fourth value in rgba(71, 68, 68, 1)



                enter image description here



                Other Color with 0.5 transparency: rgba(0, 165, 230, 0.5)



                enter image description here






                share|improve this answer














                the app drawer background color can be changed by editing gdm3.css file.



                enter image description here



                Please note that, with this answer, the background is not fully covered with the color we want, still edges, and the second page are transparent. i could not break the code for it.



                first we need to take the back up of gdm3.css file.

                this gdm3.css file is a linked file. i messed up several times with this gdm3.css file.

                the best way to take backup is copy pasting the content of gdm3.css file into a new text file.



                create a text file called "gdm3 backup" and save it in your preferred location.



                now open gdm3.css file with you favorite text editor, mine is gedit, so



                sudo -H gedit /etc/alternatives/gdm3.css



                copy all the content in it, paste in "gdm3 backup" file which we created earlier.

                save and close the "gdm3 backup" file.



                now we will edit /etc/alternatives/gdm3.css file which is already opened.

                go to line number 1321 and find the below content.



                /* App Vault/Grid */
                .icon-grid {
                spacing: 30px;
                -shell-grid-horizontal-item-size: 136px;
                -shell-grid-vertical-item-size: 136px; }
                .icon-grid .overview-icon {
                icon-size: 96px; }


                and change it like below, replace any color you want in place of rgba field.



                /* App Vault/Grid */
                .icon-grid {
                spacing: 30px;
                -shell-grid-horizontal-item-size: 136px;
                -shell-grid-vertical-item-size: 136px;
                background-color: rgba(71, 68, 68, 1); }
                .icon-grid .overview-icon {
                icon-size: 96px; }


                Observe i have edited line number 1321 and added this under line number 1321
                background-color: rgba(71, 68, 68, 1); }



                Save the file, Close & Reboot or Logout and Login to see the Change.



                enter image description here



                enter image description here



                I Use this website for choosing colors https://www.color-hex.com/

                Control the transparency by the fourth value in rgba(71, 68, 68, 1)



                enter image description here



                Other Color with 0.5 transparency: rgba(0, 165, 230, 0.5)



                enter image description here







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 6 at 16:08

























                answered Nov 6 at 11:11









                PRATAP

                1,6161522




                1,6161522






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1090352%2fhow-to-change-app-drawer-background-to-be-less-transparent%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

                    Category:香港粉麵

                    List *all* the tuples!

                    Channel [V]