答案1
应用类别
如果不编辑源代码,您就无法做到这一点。Gnome Shell 的早期版本有这样的类别,但该功能已被删除。
通过在应用程序文件夹中组织应用程序,您可以从功能上接近此功能。执行此操作的“官方”方法非常隐蔽,并且涉及使用“软件”。
- 转到“已安装”选项卡。
- 单击“汉堡”菜单左侧顶栏中的复选标记。
- 在类别中选择要移动的应用程序。
- 完成后,点击“添加到文件夹”。
- 出现“应用程序文件夹”对话框。您可以将其添加到现有文件夹,也可以创建新文件夹。
可以通过安装 Gnome Shell 扩展来实现一种“非官方”但可能更强大的应用程序文件夹操作方式Appfolders 管理扩展。
电源管理按钮(关机、注销......)
图标在较新的 Ubuntu 版本中默认存在。如果它们在 Ubuntu 18.04 中尚不存在,那么您可以通过在文件夹 ~/.local/share/applications 中创建相应的 .desktop 文件来创建自己的图标。在终端中复制并粘贴以下代码将自动为您执行此操作:
/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