openbox autostart only works partially

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I'm new to openbox but have already found great appreciation in using it. I've however got some troubles with my autostart file.
My ~/.config/openbox/autostart looks like:



 tint2
dbus-launch xfce4-power-manager
dbus-launch nm-applet
feh --bg-fill ~/Pictures/wallpaper/Matrix-Wallpaper-001.jpg


and while tint2 starts properly, none of the other commands get executed.
For troubleshooting I shrank it to:



 tint2
xfce4-power-manager
nm-applet


but still, only tint2... can anyone help out?







share|improve this question























    up vote
    0
    down vote

    favorite












    I'm new to openbox but have already found great appreciation in using it. I've however got some troubles with my autostart file.
    My ~/.config/openbox/autostart looks like:



     tint2
    dbus-launch xfce4-power-manager
    dbus-launch nm-applet
    feh --bg-fill ~/Pictures/wallpaper/Matrix-Wallpaper-001.jpg


    and while tint2 starts properly, none of the other commands get executed.
    For troubleshooting I shrank it to:



     tint2
    xfce4-power-manager
    nm-applet


    but still, only tint2... can anyone help out?







    share|improve this question





















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm new to openbox but have already found great appreciation in using it. I've however got some troubles with my autostart file.
      My ~/.config/openbox/autostart looks like:



       tint2
      dbus-launch xfce4-power-manager
      dbus-launch nm-applet
      feh --bg-fill ~/Pictures/wallpaper/Matrix-Wallpaper-001.jpg


      and while tint2 starts properly, none of the other commands get executed.
      For troubleshooting I shrank it to:



       tint2
      xfce4-power-manager
      nm-applet


      but still, only tint2... can anyone help out?







      share|improve this question











      I'm new to openbox but have already found great appreciation in using it. I've however got some troubles with my autostart file.
      My ~/.config/openbox/autostart looks like:



       tint2
      dbus-launch xfce4-power-manager
      dbus-launch nm-applet
      feh --bg-fill ~/Pictures/wallpaper/Matrix-Wallpaper-001.jpg


      and while tint2 starts properly, none of the other commands get executed.
      For troubleshooting I shrank it to:



       tint2
      xfce4-power-manager
      nm-applet


      but still, only tint2... can anyone help out?









      share|improve this question










      share|improve this question




      share|improve this question









      asked Jun 26 at 6:49









      cerr

      62472236




      62472236




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          0
          down vote













          You should run the commands in background, otherwise the next'll wait until the previous command has finished.



          To run a shell command in background just attach & – like that:



          tint2 &
          dbus-launch xfce4-power-manager &
          dbus-launch nm-applet &
          feh --bg-fill ~/Pictures/wallpaper/Matrix-Wallpaper-001.jpg &





          share|improve this answer




























            up vote
            0
            down vote













            This has been pointed out on the openbox wiki Help:Autostart page:




            # Programs that will run after Openbox has started

            # Set the wallpaper
            hsetroot ~/wallpaper.png &

            # Run a Composite manager
            xcompmgr -c -t-5 -l-5 -r4.2 -o.55 &

            # SCIM support (for typing non-english characters)
            scim -d &

            # A panel for good times
            fbpanel &


            To run commands for all users system-wide, place them in a similar
            file in /etc/xdg/openbox/autostart.



            Make sure that you end any commands with "&" so that they are run in
            the background, or any programs after it will not run.







            share|improve this answer





















              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',
              convertImagesToLinks: false,
              noModals: false,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              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%2f451929%2fopenbox-autostart-only-works-partially%23new-answer', 'question_page');

              );

              Post as a guest






























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              0
              down vote













              You should run the commands in background, otherwise the next'll wait until the previous command has finished.



              To run a shell command in background just attach & – like that:



              tint2 &
              dbus-launch xfce4-power-manager &
              dbus-launch nm-applet &
              feh --bg-fill ~/Pictures/wallpaper/Matrix-Wallpaper-001.jpg &





              share|improve this answer

























                up vote
                0
                down vote













                You should run the commands in background, otherwise the next'll wait until the previous command has finished.



                To run a shell command in background just attach & – like that:



                tint2 &
                dbus-launch xfce4-power-manager &
                dbus-launch nm-applet &
                feh --bg-fill ~/Pictures/wallpaper/Matrix-Wallpaper-001.jpg &





                share|improve this answer























                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  You should run the commands in background, otherwise the next'll wait until the previous command has finished.



                  To run a shell command in background just attach & – like that:



                  tint2 &
                  dbus-launch xfce4-power-manager &
                  dbus-launch nm-applet &
                  feh --bg-fill ~/Pictures/wallpaper/Matrix-Wallpaper-001.jpg &





                  share|improve this answer













                  You should run the commands in background, otherwise the next'll wait until the previous command has finished.



                  To run a shell command in background just attach & – like that:



                  tint2 &
                  dbus-launch xfce4-power-manager &
                  dbus-launch nm-applet &
                  feh --bg-fill ~/Pictures/wallpaper/Matrix-Wallpaper-001.jpg &






                  share|improve this answer













                  share|improve this answer



                  share|improve this answer











                  answered Jun 26 at 12:12









                  kai-dj

                  1463




                  1463






















                      up vote
                      0
                      down vote













                      This has been pointed out on the openbox wiki Help:Autostart page:




                      # Programs that will run after Openbox has started

                      # Set the wallpaper
                      hsetroot ~/wallpaper.png &

                      # Run a Composite manager
                      xcompmgr -c -t-5 -l-5 -r4.2 -o.55 &

                      # SCIM support (for typing non-english characters)
                      scim -d &

                      # A panel for good times
                      fbpanel &


                      To run commands for all users system-wide, place them in a similar
                      file in /etc/xdg/openbox/autostart.



                      Make sure that you end any commands with "&" so that they are run in
                      the background, or any programs after it will not run.







                      share|improve this answer

























                        up vote
                        0
                        down vote













                        This has been pointed out on the openbox wiki Help:Autostart page:




                        # Programs that will run after Openbox has started

                        # Set the wallpaper
                        hsetroot ~/wallpaper.png &

                        # Run a Composite manager
                        xcompmgr -c -t-5 -l-5 -r4.2 -o.55 &

                        # SCIM support (for typing non-english characters)
                        scim -d &

                        # A panel for good times
                        fbpanel &


                        To run commands for all users system-wide, place them in a similar
                        file in /etc/xdg/openbox/autostart.



                        Make sure that you end any commands with "&" so that they are run in
                        the background, or any programs after it will not run.







                        share|improve this answer























                          up vote
                          0
                          down vote










                          up vote
                          0
                          down vote









                          This has been pointed out on the openbox wiki Help:Autostart page:




                          # Programs that will run after Openbox has started

                          # Set the wallpaper
                          hsetroot ~/wallpaper.png &

                          # Run a Composite manager
                          xcompmgr -c -t-5 -l-5 -r4.2 -o.55 &

                          # SCIM support (for typing non-english characters)
                          scim -d &

                          # A panel for good times
                          fbpanel &


                          To run commands for all users system-wide, place them in a similar
                          file in /etc/xdg/openbox/autostart.



                          Make sure that you end any commands with "&" so that they are run in
                          the background, or any programs after it will not run.







                          share|improve this answer













                          This has been pointed out on the openbox wiki Help:Autostart page:




                          # Programs that will run after Openbox has started

                          # Set the wallpaper
                          hsetroot ~/wallpaper.png &

                          # Run a Composite manager
                          xcompmgr -c -t-5 -l-5 -r4.2 -o.55 &

                          # SCIM support (for typing non-english characters)
                          scim -d &

                          # A panel for good times
                          fbpanel &


                          To run commands for all users system-wide, place them in a similar
                          file in /etc/xdg/openbox/autostart.



                          Make sure that you end any commands with "&" so that they are run in
                          the background, or any programs after it will not run.








                          share|improve this answer













                          share|improve this answer



                          share|improve this answer











                          answered Jun 26 at 13:06









                          Tim

                          463211




                          463211






















                               

                              draft saved


                              draft discarded


























                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f451929%2fopenbox-autostart-only-works-partially%23new-answer', 'question_page');

                              );

                              Post as a guest













































































                              Popular posts from this blog

                              How to check contact read email or not when send email to Individual?

                              Bahrain

                              Postfix configuration issue with fips on centos 7; mailgun relay