Reload Gtk+ 3.0 theme












5















I'm trying to customize my Gtk+3.0 theme, when I make a change in my
theme, I change between two themes (with MyUnity) to force applications to
reload the theme and test mine.
But when I do that, the theme is not refreshed to appreciate my changes,
still in an old version, apparently Gtk+ is caching the theme
information somewhere.



When I close and reopen session, I can appreciate my theme changes, but doing this for each change made is very annoying.



Is there a way to refresh my theme and see my changes (a command line
program or an Gtk+ API call for example)?










share|improve this question























  • Thanks, killing and relaunching a Gtk+ application actually works.

    – eagleoneraptor
    Jun 16 '12 at 20:35
















5















I'm trying to customize my Gtk+3.0 theme, when I make a change in my
theme, I change between two themes (with MyUnity) to force applications to
reload the theme and test mine.
But when I do that, the theme is not refreshed to appreciate my changes,
still in an old version, apparently Gtk+ is caching the theme
information somewhere.



When I close and reopen session, I can appreciate my theme changes, but doing this for each change made is very annoying.



Is there a way to refresh my theme and see my changes (a command line
program or an Gtk+ API call for example)?










share|improve this question























  • Thanks, killing and relaunching a Gtk+ application actually works.

    – eagleoneraptor
    Jun 16 '12 at 20:35














5












5








5


2






I'm trying to customize my Gtk+3.0 theme, when I make a change in my
theme, I change between two themes (with MyUnity) to force applications to
reload the theme and test mine.
But when I do that, the theme is not refreshed to appreciate my changes,
still in an old version, apparently Gtk+ is caching the theme
information somewhere.



When I close and reopen session, I can appreciate my theme changes, but doing this for each change made is very annoying.



Is there a way to refresh my theme and see my changes (a command line
program or an Gtk+ API call for example)?










share|improve this question














I'm trying to customize my Gtk+3.0 theme, when I make a change in my
theme, I change between two themes (with MyUnity) to force applications to
reload the theme and test mine.
But when I do that, the theme is not refreshed to appreciate my changes,
still in an old version, apparently Gtk+ is caching the theme
information somewhere.



When I close and reopen session, I can appreciate my theme changes, but doing this for each change made is very annoying.



Is there a way to refresh my theme and see my changes (a command line
program or an Gtk+ API call for example)?







themes gtk3






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jun 16 '12 at 1:14









eagleoneraptoreagleoneraptor

13326




13326













  • Thanks, killing and relaunching a Gtk+ application actually works.

    – eagleoneraptor
    Jun 16 '12 at 20:35



















  • Thanks, killing and relaunching a Gtk+ application actually works.

    – eagleoneraptor
    Jun 16 '12 at 20:35

















Thanks, killing and relaunching a Gtk+ application actually works.

– eagleoneraptor
Jun 16 '12 at 20:35





Thanks, killing and relaunching a Gtk+ application actually works.

– eagleoneraptor
Jun 16 '12 at 20:35










2 Answers
2






active

oldest

votes


















4














This is rather simple and effective:




  1. While editing your theme open a Nautilus window

  2. Kill Nautilus with killall, then open nautilus from the Terminal

  3. Make your changes to the theme and kill nautilus again then relaunch
    it


You can see the changes you made witout doing anything difficult. Most elements that you change of the theme will reflect in Nautilus.






share|improve this answer

































    0














    You can use this bash function to reload the theme without reloading the shell, you can add it to your ~/.bashrc file.



    function reload_gtk_theme() {
    theme=$(gsettings get org.gnome.desktop.interface gtk-theme)
    gsettings set org.gnome.desktop.interface gtk-theme ''
    sleep 1
    gsettings set org.gnome.desktop.interface gtk-theme $theme
    }


    To use it, run:



    $ reload_gtk_theme





    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',
      autoActivateHeartbeat: false,
      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%2f151513%2freload-gtk-3-0-theme%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      4














      This is rather simple and effective:




      1. While editing your theme open a Nautilus window

      2. Kill Nautilus with killall, then open nautilus from the Terminal

      3. Make your changes to the theme and kill nautilus again then relaunch
        it


      You can see the changes you made witout doing anything difficult. Most elements that you change of the theme will reflect in Nautilus.






      share|improve this answer






























        4














        This is rather simple and effective:




        1. While editing your theme open a Nautilus window

        2. Kill Nautilus with killall, then open nautilus from the Terminal

        3. Make your changes to the theme and kill nautilus again then relaunch
          it


        You can see the changes you made witout doing anything difficult. Most elements that you change of the theme will reflect in Nautilus.






        share|improve this answer




























          4












          4








          4







          This is rather simple and effective:




          1. While editing your theme open a Nautilus window

          2. Kill Nautilus with killall, then open nautilus from the Terminal

          3. Make your changes to the theme and kill nautilus again then relaunch
            it


          You can see the changes you made witout doing anything difficult. Most elements that you change of the theme will reflect in Nautilus.






          share|improve this answer















          This is rather simple and effective:




          1. While editing your theme open a Nautilus window

          2. Kill Nautilus with killall, then open nautilus from the Terminal

          3. Make your changes to the theme and kill nautilus again then relaunch
            it


          You can see the changes you made witout doing anything difficult. Most elements that you change of the theme will reflect in Nautilus.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jun 19 '12 at 21:33

























          answered Jun 18 '12 at 3:22









          Uri HerreraUri Herrera

          10.4k1574130




          10.4k1574130

























              0














              You can use this bash function to reload the theme without reloading the shell, you can add it to your ~/.bashrc file.



              function reload_gtk_theme() {
              theme=$(gsettings get org.gnome.desktop.interface gtk-theme)
              gsettings set org.gnome.desktop.interface gtk-theme ''
              sleep 1
              gsettings set org.gnome.desktop.interface gtk-theme $theme
              }


              To use it, run:



              $ reload_gtk_theme





              share|improve this answer




























                0














                You can use this bash function to reload the theme without reloading the shell, you can add it to your ~/.bashrc file.



                function reload_gtk_theme() {
                theme=$(gsettings get org.gnome.desktop.interface gtk-theme)
                gsettings set org.gnome.desktop.interface gtk-theme ''
                sleep 1
                gsettings set org.gnome.desktop.interface gtk-theme $theme
                }


                To use it, run:



                $ reload_gtk_theme





                share|improve this answer


























                  0












                  0








                  0







                  You can use this bash function to reload the theme without reloading the shell, you can add it to your ~/.bashrc file.



                  function reload_gtk_theme() {
                  theme=$(gsettings get org.gnome.desktop.interface gtk-theme)
                  gsettings set org.gnome.desktop.interface gtk-theme ''
                  sleep 1
                  gsettings set org.gnome.desktop.interface gtk-theme $theme
                  }


                  To use it, run:



                  $ reload_gtk_theme





                  share|improve this answer













                  You can use this bash function to reload the theme without reloading the shell, you can add it to your ~/.bashrc file.



                  function reload_gtk_theme() {
                  theme=$(gsettings get org.gnome.desktop.interface gtk-theme)
                  gsettings set org.gnome.desktop.interface gtk-theme ''
                  sleep 1
                  gsettings set org.gnome.desktop.interface gtk-theme $theme
                  }


                  To use it, run:



                  $ reload_gtk_theme






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 16 at 17:46









                  IkbelIkbel

                  1034




                  1034






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Ask Ubuntu!


                      • 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%2faskubuntu.com%2fquestions%2f151513%2freload-gtk-3-0-theme%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

                      How to change which sound is reproduced for terminal bell?

                      Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

                      Can I use Tabulator js library in my java Spring + Thymeleaf project?