linicon-theme 1.0.1

Get the user's current icon the on Linux
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Linicon Theme

Get the user's current icon theme on Linux

There isn't a unified standard for getting the current icon theme on Linux.
So linicon-theme attempts to check many places theme information might be
stored.  See [the docs](https://docs.rs/linicon-theme) for more details.

## Example

```rust
use linicon_theme::get_icon_theme;

println!("Your current icon theme is: {}", get_icon_theme().unwrap());
```