-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathemblems.rs
More file actions
16 lines (16 loc) · 1.61 KB
/
Copy pathemblems.rs
File metadata and controls
16 lines (16 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub static CONTEXT: &'static str = "Emblems";
pub static ICONS: &'static [&'static str] = &[
"emblem-default", // The icon used as an emblem to specify the default selection of a printer for example.
"emblem-documents", // The icon used as an emblem for the directory where a user's documents are stored.
"emblem-downloads", // The icon used as an emblem for the directory where a user's downloads from the internet are stored.
"emblem-favorite", // The icon used as an emblem for files and directories that the user marks as favorites.
"emblem-important", // The icon used as an emblem for files and directories that are marked as important by the user.
"emblem-mail", // The icon used as an emblem to specify the directory where the user's electronic mail is stored.
"emblem-photos", // The icon used as an emblem to specify the directory where the user stores photographs.
"emblem-readonly", // The icon used as an emblem for files and directories which can not be written to by the user.
"emblem-shared", // The icon used as an emblem for files and directories that are shared to other users.
"emblem-symbolic-link", // The icon used as an emblem for files and direcotires that are links to other files or directories on the filesystem.
"emblem-synchronized", // The icon used as an emblem for files or directories that are configured to be synchronized to another device.
"emblem-system", // The icon used as an emblem for directories that contain system libraries, settings, and data.
"emblem-unreadable", // The icon used as an emblem for files and directories that are inaccessible.
];