wallflow 0.5.2

Elegant wallpaper management with smooth transitions, powered by awww
Documentation
1
2
3
4
5
6
7
8
9
use chrono::Local;

pub struct FilesystemHelper;

impl FilesystemHelper {
  pub fn make_file_suffix() -> String {
    Local::now().format("%Y%m%d_%H%M%S").to_string()
  }
}