diff --git a/assets/the_man.png b/assets/the_man.png new file mode 100644 index 0000000..e9ba611 Binary files /dev/null and b/assets/the_man.png differ diff --git a/src/mpv_setup.rs b/src/mpv_setup.rs index 6b5d336..14d9bb4 100644 --- a/src/mpv_setup.rs +++ b/src/mpv_setup.rs @@ -9,6 +9,8 @@ use crate::MpvConnectionArgs; const DEFAULT_MPV_CONFIG_CONTENT: &str = include_str!("../assets/default-mpv.conf"); +const THE_MAN_PNG: &[u8] = include_bytes!("../assets/the_man.png"); + pub fn create_mpv_config_file(args_config_file: Option) -> anyhow::Result { let file_content = if let Some(path) = args_config_file { if !Path::new(&path).exists() {