dendritic: rewrote entire config

This commit is contained in:
2026-05-23 20:18:11 +02:00
parent a93284ff80
commit c8ee6d85fe
190 changed files with 6764 additions and 8101 deletions
+31
View File
@@ -0,0 +1,31 @@
{ ... }: {
flake.homeModules.desktopEntries = { ... }: {
# for when the system lacks of a .desktop file
home.file.".local/share/applications/org.quickshell.desktop" = {
enable = true;
text = ''
[Desktop Entry]
Name=QuickShell
Comment=QuickShell application
Exec=quickshell
Icon=utilities-terminal
Type=Application
Categories=Utility;
StartupNotify=true
X-DBUS-ServiceName=org.quickshell
'';
};
home.file.".local/share/applications/org.kde.PrintQueue.desktop" = {
enable = true;
text = ''
[Desktop Entry]
Type=Application
Name=Print Queue
Exec=print-queue
Icon=printer
Categories=Utility;
StartupNotify=true
'';
};
};
}