How do I add categories, shutdown and reboot icons to GNOME shell overview on Ubuntu 18.04?Bind GNOME-Shell activities overview to custom mouse buttonIs it possible to get GNOME Shell 'Activities' Overview to show windows from all Workspaces?always show notifications in activity overview (gnome shell 3.10)Can applications on the shell activities overview show icons?GNOME Shell - how to add a custom favorite app / change favorite's path?Show all open windows / Activities overview in Ubuntu 18.04 GNOME - how to disable some ways to produce it?How downgrade gnome-shell in 18.04?

The use of SlotSequence in If[#1 > #2, ##] &

How does an Evocation Wizard's Overchannel ability interact with Chaos Bolt?

How would a race of humanoids with tails design [vehicle] seats?

Meaning of “Bulldog drooled courses through his jowls”

Is the phrase “You are requested” polite or rude?

Minimum number of turns to capture all pieces in Checkers

What actually is "unallocated space"?

Would a spacecraft carry arc welding supplies?

Can I exit and reenter a UK station while waiting for a connecting train?

Who inspired the character Geordi La Forge?

When and why did the House rules change to permit an inquiry without a vote?

Repair drywall and protect wires on back of electrical panel

Examples of problems with non-convex constraint functions but convex feasible region

Does Turkey make the "structural steel frame" for the F-35 fighter?

Moving objects and gravitational radiation

Conveying the idea of "tricky"

What are the advantages to banks being located in the City of London (the Square Mile)?

In this day and age should the definition / categorisation of erotica be revised?

Best ways to compress and store tons of CO2?

I don't want my ls command in my script to print results on screen

Fantasy series about a human girl with gold tattoos who makes too much blood

Could you use uppercase or special characters in a password in early Unix?

What plausible reasons why people forget they didn't originally live on this new planet?

だけ between two verbs / second verb performing an action on だけ construction



How do I add categories, shutdown and reboot icons to GNOME shell overview on Ubuntu 18.04?


Bind GNOME-Shell activities overview to custom mouse buttonIs it possible to get GNOME Shell 'Activities' Overview to show windows from all Workspaces?always show notifications in activity overview (gnome shell 3.10)Can applications on the shell activities overview show icons?GNOME Shell - how to add a custom favorite app / change favorite's path?Show all open windows / Activities overview in Ubuntu 18.04 GNOME - how to disable some ways to produce it?How downgrade gnome-shell in 18.04?






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









1

















How can I add the above options to GNOME shell overview on Ubuntu 18.04.



Ubuntu 18.04 GNOME shell mock-up:
Ubuntu 18.04 gnome shell mock-up










share|improve this question


































    1

















    How can I add the above options to GNOME shell overview on Ubuntu 18.04.



    Ubuntu 18.04 GNOME shell mock-up:
    Ubuntu 18.04 gnome shell mock-up










    share|improve this question






























      1












      1








      1


      2






      How can I add the above options to GNOME shell overview on Ubuntu 18.04.



      Ubuntu 18.04 GNOME shell mock-up:
      Ubuntu 18.04 gnome shell mock-up










      share|improve this question

















      How can I add the above options to GNOME shell overview on Ubuntu 18.04.



      Ubuntu 18.04 GNOME shell mock-up:
      Ubuntu 18.04 gnome shell mock-up







      gnome-shell activities-overview






      share|improve this question
















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 27 at 21:08







      Christopher Hitchens

















      asked May 27 at 18:08









      Christopher HitchensChristopher Hitchens

      62 bronze badges




      62 bronze badges























          1 Answer
          1






          active

          oldest

          votes


















          0


















          Application categories



          You can't without editing the source code. Early incarnations of Gnome Shell had such categories, but the feature was dropped.



          You may functionally get close to this functionality by organizing your applications in application folders. The "official" way to do this is pretty hidden, and involves the use of "Software".



          • Go to the "Installed" tab.

          • Click the checkmark sign in the top bar, left of the "hamburger" menu.

          • Select the applications you want to move in a Category.

          • When done, click "Add to folder".

          • An "Application folder" dialog appears. You can either add to an existing folder, or create a new one.

          An "unofficial" but likely more powerful way to work with application folders can be achieved installing the Gnome Shell extension Appfolders Management extension.



          Power management buttons (Shut down, Log off...)



          Icons are by default present in more recent Ubuntu versions. If they are not yet present in Ubuntu 18.04, then you can create your own by creating corresponding .desktop files in the folder ~/.local/share/applications. Copying and pasting following code in a terminal will do that automatically for you:



          /bin/cat <<EOM >~/.local/share/applications/shutdown.desktop
          [Desktop Entry]
          Name=Shutdown
          Comment=Shutdown system
          Exec=gnome-session-quit --power-off
          Terminal=false
          Type=Application
          Icon=system-shutdown
          Categories=GTK;Utility;
          Keywords=Shut Down;Power Off;
          StartupNotify=true
          EOM

          /bin/cat <<EOM > ~/.local/share/applications/reboot.desktop
          [Desktop Entry]
          Name=Reboot
          Comment=Reboot system
          Exec=gnome-session-quit --reboot
          Terminal=false
          Type=Application
          Icon=system-reboot
          Categories=GTK;Utility;
          Keywords=Start again;Restart;
          StartupNotify=true
          EOM

          /bin/cat <<EOM >~/.local/share/applications/logout.desktop
          [Desktop Entry]
          Name=Logout
          Comment=Log out of system
          Exec=gnome-session-quit --logout
          Terminal=false
          Type=Application
          Icon=system-logout
          Categories=GTK;Utility;
          Keywords=Log out;Sign off;
          StartupNotify=true
          EOM

          /bin/cat <<EOM >~/.local/share/applications/suspend.desktop
          [Desktop Entry]
          Name=Suspend
          Comment=Suspend system
          Exec=systemctl suspend -i
          Terminal=false
          Type=Application
          Icon=system-suspend
          Categories=GTK;Utility;
          Keywords=Sleep;
          StartupNotify=true
          EOM





          share|improve this answer


























          • none of the above worked for me. I want it to look just like the mock-up so I won't have to type 'shutdown' or 'logout' to perform these operations

            – Christopher Hitchens
            May 28 at 11:28











          • 1) You can add the log-out/shut down to the main screen 2) With the same two clicks, you can shutdown from the user menu 3) I said you can't achieve what you want (without programming, this is open source after all). That effectively answers the question. As an extra, I provide a possible option to make it more like you want. If none of these work, then you should explore a different desktop environment.

            – vanadium
            May 29 at 3:17












          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/4.0/"u003ecc by-sa 4.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%2f1146617%2fhow-do-i-add-categories-shutdown-and-reboot-icons-to-gnome-shell-overview-on-ub%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









          0


















          Application categories



          You can't without editing the source code. Early incarnations of Gnome Shell had such categories, but the feature was dropped.



          You may functionally get close to this functionality by organizing your applications in application folders. The "official" way to do this is pretty hidden, and involves the use of "Software".



          • Go to the "Installed" tab.

          • Click the checkmark sign in the top bar, left of the "hamburger" menu.

          • Select the applications you want to move in a Category.

          • When done, click "Add to folder".

          • An "Application folder" dialog appears. You can either add to an existing folder, or create a new one.

          An "unofficial" but likely more powerful way to work with application folders can be achieved installing the Gnome Shell extension Appfolders Management extension.



          Power management buttons (Shut down, Log off...)



          Icons are by default present in more recent Ubuntu versions. If they are not yet present in Ubuntu 18.04, then you can create your own by creating corresponding .desktop files in the folder ~/.local/share/applications. Copying and pasting following code in a terminal will do that automatically for you:



          /bin/cat <<EOM >~/.local/share/applications/shutdown.desktop
          [Desktop Entry]
          Name=Shutdown
          Comment=Shutdown system
          Exec=gnome-session-quit --power-off
          Terminal=false
          Type=Application
          Icon=system-shutdown
          Categories=GTK;Utility;
          Keywords=Shut Down;Power Off;
          StartupNotify=true
          EOM

          /bin/cat <<EOM > ~/.local/share/applications/reboot.desktop
          [Desktop Entry]
          Name=Reboot
          Comment=Reboot system
          Exec=gnome-session-quit --reboot
          Terminal=false
          Type=Application
          Icon=system-reboot
          Categories=GTK;Utility;
          Keywords=Start again;Restart;
          StartupNotify=true
          EOM

          /bin/cat <<EOM >~/.local/share/applications/logout.desktop
          [Desktop Entry]
          Name=Logout
          Comment=Log out of system
          Exec=gnome-session-quit --logout
          Terminal=false
          Type=Application
          Icon=system-logout
          Categories=GTK;Utility;
          Keywords=Log out;Sign off;
          StartupNotify=true
          EOM

          /bin/cat <<EOM >~/.local/share/applications/suspend.desktop
          [Desktop Entry]
          Name=Suspend
          Comment=Suspend system
          Exec=systemctl suspend -i
          Terminal=false
          Type=Application
          Icon=system-suspend
          Categories=GTK;Utility;
          Keywords=Sleep;
          StartupNotify=true
          EOM





          share|improve this answer


























          • none of the above worked for me. I want it to look just like the mock-up so I won't have to type 'shutdown' or 'logout' to perform these operations

            – Christopher Hitchens
            May 28 at 11:28











          • 1) You can add the log-out/shut down to the main screen 2) With the same two clicks, you can shutdown from the user menu 3) I said you can't achieve what you want (without programming, this is open source after all). That effectively answers the question. As an extra, I provide a possible option to make it more like you want. If none of these work, then you should explore a different desktop environment.

            – vanadium
            May 29 at 3:17















          0


















          Application categories



          You can't without editing the source code. Early incarnations of Gnome Shell had such categories, but the feature was dropped.



          You may functionally get close to this functionality by organizing your applications in application folders. The "official" way to do this is pretty hidden, and involves the use of "Software".



          • Go to the "Installed" tab.

          • Click the checkmark sign in the top bar, left of the "hamburger" menu.

          • Select the applications you want to move in a Category.

          • When done, click "Add to folder".

          • An "Application folder" dialog appears. You can either add to an existing folder, or create a new one.

          An "unofficial" but likely more powerful way to work with application folders can be achieved installing the Gnome Shell extension Appfolders Management extension.



          Power management buttons (Shut down, Log off...)



          Icons are by default present in more recent Ubuntu versions. If they are not yet present in Ubuntu 18.04, then you can create your own by creating corresponding .desktop files in the folder ~/.local/share/applications. Copying and pasting following code in a terminal will do that automatically for you:



          /bin/cat <<EOM >~/.local/share/applications/shutdown.desktop
          [Desktop Entry]
          Name=Shutdown
          Comment=Shutdown system
          Exec=gnome-session-quit --power-off
          Terminal=false
          Type=Application
          Icon=system-shutdown
          Categories=GTK;Utility;
          Keywords=Shut Down;Power Off;
          StartupNotify=true
          EOM

          /bin/cat <<EOM > ~/.local/share/applications/reboot.desktop
          [Desktop Entry]
          Name=Reboot
          Comment=Reboot system
          Exec=gnome-session-quit --reboot
          Terminal=false
          Type=Application
          Icon=system-reboot
          Categories=GTK;Utility;
          Keywords=Start again;Restart;
          StartupNotify=true
          EOM

          /bin/cat <<EOM >~/.local/share/applications/logout.desktop
          [Desktop Entry]
          Name=Logout
          Comment=Log out of system
          Exec=gnome-session-quit --logout
          Terminal=false
          Type=Application
          Icon=system-logout
          Categories=GTK;Utility;
          Keywords=Log out;Sign off;
          StartupNotify=true
          EOM

          /bin/cat <<EOM >~/.local/share/applications/suspend.desktop
          [Desktop Entry]
          Name=Suspend
          Comment=Suspend system
          Exec=systemctl suspend -i
          Terminal=false
          Type=Application
          Icon=system-suspend
          Categories=GTK;Utility;
          Keywords=Sleep;
          StartupNotify=true
          EOM





          share|improve this answer


























          • none of the above worked for me. I want it to look just like the mock-up so I won't have to type 'shutdown' or 'logout' to perform these operations

            – Christopher Hitchens
            May 28 at 11:28











          • 1) You can add the log-out/shut down to the main screen 2) With the same two clicks, you can shutdown from the user menu 3) I said you can't achieve what you want (without programming, this is open source after all). That effectively answers the question. As an extra, I provide a possible option to make it more like you want. If none of these work, then you should explore a different desktop environment.

            – vanadium
            May 29 at 3:17













          0














          0










          0









          Application categories



          You can't without editing the source code. Early incarnations of Gnome Shell had such categories, but the feature was dropped.



          You may functionally get close to this functionality by organizing your applications in application folders. The "official" way to do this is pretty hidden, and involves the use of "Software".



          • Go to the "Installed" tab.

          • Click the checkmark sign in the top bar, left of the "hamburger" menu.

          • Select the applications you want to move in a Category.

          • When done, click "Add to folder".

          • An "Application folder" dialog appears. You can either add to an existing folder, or create a new one.

          An "unofficial" but likely more powerful way to work with application folders can be achieved installing the Gnome Shell extension Appfolders Management extension.



          Power management buttons (Shut down, Log off...)



          Icons are by default present in more recent Ubuntu versions. If they are not yet present in Ubuntu 18.04, then you can create your own by creating corresponding .desktop files in the folder ~/.local/share/applications. Copying and pasting following code in a terminal will do that automatically for you:



          /bin/cat <<EOM >~/.local/share/applications/shutdown.desktop
          [Desktop Entry]
          Name=Shutdown
          Comment=Shutdown system
          Exec=gnome-session-quit --power-off
          Terminal=false
          Type=Application
          Icon=system-shutdown
          Categories=GTK;Utility;
          Keywords=Shut Down;Power Off;
          StartupNotify=true
          EOM

          /bin/cat <<EOM > ~/.local/share/applications/reboot.desktop
          [Desktop Entry]
          Name=Reboot
          Comment=Reboot system
          Exec=gnome-session-quit --reboot
          Terminal=false
          Type=Application
          Icon=system-reboot
          Categories=GTK;Utility;
          Keywords=Start again;Restart;
          StartupNotify=true
          EOM

          /bin/cat <<EOM >~/.local/share/applications/logout.desktop
          [Desktop Entry]
          Name=Logout
          Comment=Log out of system
          Exec=gnome-session-quit --logout
          Terminal=false
          Type=Application
          Icon=system-logout
          Categories=GTK;Utility;
          Keywords=Log out;Sign off;
          StartupNotify=true
          EOM

          /bin/cat <<EOM >~/.local/share/applications/suspend.desktop
          [Desktop Entry]
          Name=Suspend
          Comment=Suspend system
          Exec=systemctl suspend -i
          Terminal=false
          Type=Application
          Icon=system-suspend
          Categories=GTK;Utility;
          Keywords=Sleep;
          StartupNotify=true
          EOM





          share|improve this answer














          Application categories



          You can't without editing the source code. Early incarnations of Gnome Shell had such categories, but the feature was dropped.



          You may functionally get close to this functionality by organizing your applications in application folders. The "official" way to do this is pretty hidden, and involves the use of "Software".



          • Go to the "Installed" tab.

          • Click the checkmark sign in the top bar, left of the "hamburger" menu.

          • Select the applications you want to move in a Category.

          • When done, click "Add to folder".

          • An "Application folder" dialog appears. You can either add to an existing folder, or create a new one.

          An "unofficial" but likely more powerful way to work with application folders can be achieved installing the Gnome Shell extension Appfolders Management extension.



          Power management buttons (Shut down, Log off...)



          Icons are by default present in more recent Ubuntu versions. If they are not yet present in Ubuntu 18.04, then you can create your own by creating corresponding .desktop files in the folder ~/.local/share/applications. Copying and pasting following code in a terminal will do that automatically for you:



          /bin/cat <<EOM >~/.local/share/applications/shutdown.desktop
          [Desktop Entry]
          Name=Shutdown
          Comment=Shutdown system
          Exec=gnome-session-quit --power-off
          Terminal=false
          Type=Application
          Icon=system-shutdown
          Categories=GTK;Utility;
          Keywords=Shut Down;Power Off;
          StartupNotify=true
          EOM

          /bin/cat <<EOM > ~/.local/share/applications/reboot.desktop
          [Desktop Entry]
          Name=Reboot
          Comment=Reboot system
          Exec=gnome-session-quit --reboot
          Terminal=false
          Type=Application
          Icon=system-reboot
          Categories=GTK;Utility;
          Keywords=Start again;Restart;
          StartupNotify=true
          EOM

          /bin/cat <<EOM >~/.local/share/applications/logout.desktop
          [Desktop Entry]
          Name=Logout
          Comment=Log out of system
          Exec=gnome-session-quit --logout
          Terminal=false
          Type=Application
          Icon=system-logout
          Categories=GTK;Utility;
          Keywords=Log out;Sign off;
          StartupNotify=true
          EOM

          /bin/cat <<EOM >~/.local/share/applications/suspend.desktop
          [Desktop Entry]
          Name=Suspend
          Comment=Suspend system
          Exec=systemctl suspend -i
          Terminal=false
          Type=Application
          Icon=system-suspend
          Categories=GTK;Utility;
          Keywords=Sleep;
          StartupNotify=true
          EOM






          share|improve this answer













          share|improve this answer




          share|improve this answer










          answered May 28 at 10:55









          vanadiumvanadium

          12.5k2 gold badges22 silver badges41 bronze badges




          12.5k2 gold badges22 silver badges41 bronze badges















          • none of the above worked for me. I want it to look just like the mock-up so I won't have to type 'shutdown' or 'logout' to perform these operations

            – Christopher Hitchens
            May 28 at 11:28











          • 1) You can add the log-out/shut down to the main screen 2) With the same two clicks, you can shutdown from the user menu 3) I said you can't achieve what you want (without programming, this is open source after all). That effectively answers the question. As an extra, I provide a possible option to make it more like you want. If none of these work, then you should explore a different desktop environment.

            – vanadium
            May 29 at 3:17

















          • none of the above worked for me. I want it to look just like the mock-up so I won't have to type 'shutdown' or 'logout' to perform these operations

            – Christopher Hitchens
            May 28 at 11:28











          • 1) You can add the log-out/shut down to the main screen 2) With the same two clicks, you can shutdown from the user menu 3) I said you can't achieve what you want (without programming, this is open source after all). That effectively answers the question. As an extra, I provide a possible option to make it more like you want. If none of these work, then you should explore a different desktop environment.

            – vanadium
            May 29 at 3:17
















          none of the above worked for me. I want it to look just like the mock-up so I won't have to type 'shutdown' or 'logout' to perform these operations

          – Christopher Hitchens
          May 28 at 11:28





          none of the above worked for me. I want it to look just like the mock-up so I won't have to type 'shutdown' or 'logout' to perform these operations

          – Christopher Hitchens
          May 28 at 11:28













          1) You can add the log-out/shut down to the main screen 2) With the same two clicks, you can shutdown from the user menu 3) I said you can't achieve what you want (without programming, this is open source after all). That effectively answers the question. As an extra, I provide a possible option to make it more like you want. If none of these work, then you should explore a different desktop environment.

          – vanadium
          May 29 at 3:17





          1) You can add the log-out/shut down to the main screen 2) With the same two clicks, you can shutdown from the user menu 3) I said you can't achieve what you want (without programming, this is open source after all). That effectively answers the question. As an extra, I provide a possible option to make it more like you want. If none of these work, then you should explore a different desktop environment.

          – vanadium
          May 29 at 3:17


















          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%2f1146617%2fhow-do-i-add-categories-shutdown-and-reboot-icons-to-gnome-shell-overview-on-ub%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

          Tamil (spriik) Luke uk diar | Nawigatjuun

          Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

          Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?