Rust · 358 bytes Raw Blame History
1 //! Daemon mode for garbg
2 //!
3 //! Runs as a background service managing wallpapers.
4
5 mod state;
6 mod animation_loop;
7 mod pid;
8
9 pub use state::{Daemon, DaemonState};
10 pub use animation_loop::{AnimationLoop, AnimationConfig, AnimationInfo};
11 pub use pid::{check_stale_pid, is_daemon_running_by_pid, pid_file_path, read_pid_file, remove_pid_file, write_pid_file};
12