We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5bd752 commit 5dfc079Copy full SHA for 5dfc079
src/main.rs
@@ -33,9 +33,11 @@ impl Config {
33
if !cfg_path.exists() {
34
let mut config_file = File::create(&cfg_path).unwrap();
35
let default_icons = r#"# Add your icons mapping
36
-DEFAULT = ""
37
-kitty = "term"
38
-firefox = "browser"
+# Take care to lowercase app name
+# and use double quote the key and the value
+"DEFAULT" = ""
39
+"kitty" = "term"
40
+"firefox" = "browser"
41
"#;
42
write!(&mut config_file, "{}", default_icons).unwrap();
43
println!("Default config created in {:?}", cfg_path);
0 commit comments