home | added more .desktopfiles

This commit is contained in:
Don Harper 2023-10-15 23:12:03 -05:00
parent 283c99ba9f
commit 52f7534518

View file

@ -68,7 +68,8 @@
widevine-cdm widevine-cdm
zoom-us zoom-us
]; ];
xdg.mimeApps = { xdg = {
mimeApps = {
enable = true; enable = true;
associations.added = { associations.added = {
"application/octet-stream" = [ "gvim.desktop" ]; "application/octet-stream" = [ "gvim.desktop" ];
@ -102,4 +103,61 @@
"x-scheme-handler/mailto" = [ "neomutt.desktop" ]; "x-scheme-handler/mailto" = [ "neomutt.desktop" ];
}; };
}; };
desktopEntries = {
mealplanning = {
terminal = false;
name = "Meal Planning";
exec = "/home/don/bin/meal-planning";
icon = "chrome-nkapoddcoleikgbpncmpcfkdjmheccge-Default";
};
muttmailto = {
terminal = false;
name = "mutt-mailto";
exec = "/home/don/bin/mutt-mailto";
icon = "chrome-kmhopmchchfpfdcdjodmpfaaphdclmlj-Default";
};
myweb = {
terminal = false;
name = "myweb";
exec = "/home/don/bin/myweb %u";
mimeType = [ "x-scheme-handler/pdf" ];
};
cooking-notebook = {
type = "Application";
name = "Cooking Notebook";
icon = "obsidian";
exec = "obsidian obsidian://open\\?vault=Food\\&file=home";
};
mynotes = {
name = "My Notes";
exec = "obsidian obsidian://open\\?vault=main\\&file=home";
terminal = false;
type = "Application";
icon = "obsidian";
comment = "Obsidian";
mimeType = [ "x-scheme-handler/obsidian" ];
categories = [ "Office" ];
};
journal = {
name = "Journal";
exec = "/home/don/bin/newjournal";
terminal = false;
type = "Application";
icon = "obsidian";
comment = "Obsidian Journal";
mimeType = [ "x-scheme-handler/obsidian" ];
categories = [ "Office" ];
};
myzoom = {
name = "My Zoom-Zoom";
exec = "/home/don/bin/myzoom %u";
terminal = false;
type = "Application";
icon = "Zoom";
comment = "Zoom Video";
mimeType = [ "x-scheme-handler/zoommtg" "x-scheme-handler/zoomus" "x-scheme-handler/tel" "x-scheme-handler/callto" "x-scheme-handler/zoomphonecall" "application/x-zoom" ];
categories = [ "Network" "Application""Application" ];
};
};
};
} }