-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcategories.rs
More file actions
22 lines (22 loc) · 2.08 KB
/
Copy pathcategories.rs
File metadata and controls
22 lines (22 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pub static CONTEXT: &'static str = "Categories";
pub static ICONS: &'static [&'static str] = &[
"applications-accessories", // The icon for the \u201cAccessories\u201d sub-menu of the Programs menu.
"applications-development", // The icon for the \u201cProgramming\u201d sub-menu of the Programs menu.
"applications-engineering", // The icon for the \u201cEngineering\u201d sub-menu of the Programs menu.
"applications-games", // The icon for the \u201cGames\u201d sub-menu of the Programs menu.
"applications-graphics", // The icon for the \u201cGraphics\u201d sub-menu of the Programs menu.
"applications-internet", // The icon for the \u201cInternet\u201d sub-menu of the Programs menu.
"applications-multimedia", // The icon for the \u201cMultimedia\u201d sub-menu of the Programs menu.
"applications-office", // The icon for the \u201cOffice\u201d sub-menu of the Programs menu.
"applications-other", // The icon for the \u201cOther\u201d sub-menu of the Programs menu.
"applications-science", // The icon for the \u201cScience\u201d sub-menu of the Programs menu.
"applications-system", // The icon for the \u201cSystem Tools\u201d sub-menu of the Programs menu.
"applications-utilities", // The icon for the \u201cUtilities\u201d sub-menu of the Programs menu.
"preferences-desktop", // The icon for the \u201cDesktop Preferences\u201d category.
"preferences-desktop-peripherals", // The icon for the \u201cPeripherals\u201d sub-category of the \u201cDesktop Preferences\u201d category.
"preferences-desktop-personal", // The icon for the \u201cPersonal\u201d sub-category of the \u201cDesktop Preferences\u201d category.
"preferences-other", // The icon for the \u201cOther\u201d preferences category.
"preferences-system", // The icon for the \u201cSystem Preferences\u201d category.
"preferences-system-network", // The icon for the \u201cNetwork\u201d sub-category of the \u201cSystem Preferences\u201d category.
"system-help", // The icon for the \u201cHelp\u201d system category.
];